✨ Release Publish #327
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ✨ Release Publish | |
on: | |
push: | |
tags: | |
- v*.* | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
- name: yarn install | |
shell: bash | |
run: yarn --immutable | |
- name: build with ncc | |
shell: bash | |
run: yarn workspace kontinuous build | |
- name: prepublish | |
shell: bash | |
run: | | |
cp LICENSE README.md packages/kontinuous/ | |
cat <<< $(jq "del(.dependencies, .devDependencies, .scripts, .main)" packages/kontinuous/package.json) > packages/kontinuous/package.json | |
- name: extract npm tag | |
id: npm-tag | |
shell: bash | |
run: | | |
if [[ "$GITHUB_REF" == *"alpha"* ]]; then | |
npm_tag="alpha" | |
elif [[ "$GITHUB_REF" == *"beta"* ]]; then | |
npm_tag="beta" | |
else | |
npm_tag="latest" | |
fi | |
echo "tag=$npm_tag" >> $GITHUB_OUTPUT | |
- id: publish-kontinuous | |
uses: JS-DevTools/npm-publish@v2 | |
with: | |
token: ${{ secrets.SOCIALGROOVYBOT_NPM_TOKEN }} | |
package: packages/kontinuous/package.json | |
tag: ${{ steps.npm-tag.outputs.tag }} | |
- if: steps.publish-kontinuous.outputs.type | |
run: | | |
echo "Version changed: ${{ steps.publish-kontinuous.outputs.old-version }} => ${{ steps.publish-kontinuous.outputs.version }}" | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
token: ${{ secrets.SOCIALGROOVYBOT_BOTO_PAT }} | |
generate_release_notes: true |