ci: bump patch version to 4.0.4 #14
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: Bump minor version on prod push | |
| on: | |
| push: | |
| branches: [ prod ] | |
| jobs: | |
| build-tasks: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: setup node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20 | |
| - uses: actions/checkout@v3 | |
| with: | |
| ref: main | |
| - name: Bump patch version | |
| run: | | |
| npm ci | |
| npm run _minorVersionBump | |
| git status | |
| phoenix_version=`node -p "require('./package.json').apiVersion"` | |
| echo "PHOENIX_VERSION=${phoenix_version}" >> $GITHUB_ENV | |
| shell: bash | |
| - name: Create Bump patch version Pull Request | |
| id: cpr | |
| uses: peter-evans/create-pull-request@v4 | |
| with: | |
| commit-message: 'ci: bump minor version to ${{ env.PHOENIX_VERSION }}' | |
| committer: GitHub <[email protected]> | |
| author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
| title: '[Release BOT] Bump minor version to ${{ env.PHOENIX_VERSION }}' | |
| add-paths: | | |
| package.json | |
| src/config.json | |
| src-node/package.json | |
| src/index.html | |
| body: | | |
| Bump patch version to ${{ env.PHOENIX_VERSION }} | |
| - Auto-generated by `minor-version-bump.yml` action | |
| - name: Check outputs | |
| if: ${{ steps.cpr.outputs.pull-request-number }} | |
| run: | | |
| echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" | |
| echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}" |