Release package #118
This file contains hidden or 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 package | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| release-level: | |
| description: 'Release level (one of): patch, minor, major, prepatch, preminor, premajor, prerelease' | |
| required: true | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Release level check | |
| run: | | |
| case "$RELEASE_LEVEL" in | |
| major|minor|patch|premajor|preminor|prepatch|prerelease) | |
| echo "Release-level is OK" | |
| ;; | |
| *) | |
| echo "Unknown release-level" | |
| exit 1 | |
| ;; | |
| esac | |
| env: | |
| RELEASE_LEVEL: ${{ github.event.inputs.release-level }} | |
| - name: Branch check | |
| run: | | |
| if [[ $RELEASE_LEVEL != pre* ]] && [[ $BRANCH != main ]] | |
| then | |
| echo "Stable release on other then main branch is not allowed" | |
| exit 1 | |
| fi | |
| echo "Release-level and branch combination is VALID" | |
| env: | |
| BRANCH: ${{ github.ref_name }} | |
| RELEASE_LEVEL: ${{ github.event.inputs.release-level }} | |
| # Checkout project main and setup environment | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@v2 | |
| with: | |
| registry-url: https://registry.npmjs.org/ | |
| node-version: '18' | |
| # Install dependencies and run test | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| # Test the project | |
| - name: Tests | |
| run: yarn test | |
| # Git configuration | |
| - name: Git configuration | |
| run: | | |
| git config --global user.email "[email protected]" | |
| git config --global user.name "GitHub Actions release workflow" | |
| - name: Bump release version | |
| if: startsWith(github.event.inputs.release-level, 'pre') != true | |
| run: | | |
| echo "NEW_VERSION=$(npm --no-git-tag-version version $RELEASE_LEVEL)" >> $GITHUB_ENV | |
| echo "RELEASE_TAG=latest" >> $GITHUB_ENV | |
| env: | |
| RELEASE_LEVEL: ${{ github.event.inputs.release-level }} | |
| - name: Bump pre-release version | |
| if: startsWith(github.event.inputs.release-level, 'pre') && github.ref_name != 'main' | |
| run: | | |
| echo "NEW_VERSION=$(npm --no-git-tag-version --preid=beta version $RELEASE_LEVEL)" >> $GITHUB_ENV | |
| echo "RELEASE_TAG=beta" >> $GITHUB_ENV | |
| env: | |
| RELEASE_LEVEL: ${{ github.event.inputs.release-level }} | |
| - name: Bump rc pre-release version | |
| if: startsWith(github.event.inputs.release-level, 'pre') && github.ref_name == 'main' | |
| run: | | |
| echo "NEW_VERSION=$(npm --no-git-tag-version --preid=rc version $RELEASE_LEVEL)" >> $GITHUB_ENV | |
| echo "RELEASE_TAG=next" >> $GITHUB_ENV | |
| env: | |
| RELEASE_LEVEL: ${{ github.event.inputs.release-level }} | |
| # Update changelog unreleased section with new version | |
| - name: Update changelog | |
| uses: superfaceai/release-changelog-action@v1 | |
| if: startsWith(github.event.inputs.release-level, 'pre') != true | |
| with: | |
| path-to-changelog: CHANGELOG.md | |
| version: ${{ env.NEW_VERSION }} | |
| operation: release | |
| # Commit changelog changes | |
| - name: Commit CHANGELOG.md and package.json changes and create tag | |
| run: | | |
| git add "package.json" | |
| git add "CHANGELOG.md" | |
| git commit -m "chore: release ${{ env.NEW_VERSION }}" | |
| git tag ${{ env.NEW_VERSION }} | |
| # Publish version to public repository | |
| - name: Publish | |
| run: yarn publish --verbose --access public --tag ${{ env.RELEASE_TAG }} | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPMJS_BOT_PAT }} | |
| # Push changes to origin | |
| - name: Push changes to repository | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| git push origin && git push --tags | |
| # Read version changelog | |
| - id: get-changelog | |
| name: Get release version changelog | |
| if: startsWith(github.event.inputs.release-level, 'pre') != true | |
| uses: superfaceai/release-changelog-action@v1 | |
| with: | |
| path-to-changelog: CHANGELOG.md | |
| version: ${{ env.NEW_VERSION }} | |
| operation: read | |
| # Update release documentation | |
| - name: Update GitHub release documentation | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| tag_name: ${{ env.NEW_VERSION }} | |
| body: ${{ steps.get-changelog.outputs.changelog }} | |
| prerelease: ${{ startsWith(github.event.inputs.release-level, 'pre') }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # Trigger Daily test for released version (excluding pre and rc) | |
| - name: Trigger Daily Test | |
| if: startsWith(github.event.inputs.release-level, 'pre') != true | |
| uses: peter-evans/repository-dispatch@v1 | |
| with: | |
| token: ${{ secrets.GH_BOT_PAT }} | |
| repository: superfaceai/superface-daily | |
| event-type: on-demand-test |