docs: update newly added features and release credits #118
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: Bump patch version | |
on: | |
push: | |
branches: [ staging, tauri ] | |
jobs: | |
build-tasks: | |
runs-on: ubuntu-latest | |
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 _patchVersionBump | |
git status | |
phoenix_version=`node -p "require('./package.json').apiVersion"` | |
echo "PHOENIX_VERSION=${phoenix_version}" >> $GITHUB_ENV | |
echo "SKIP_TEST_RUN_GITHUB=yes" >> $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 patch version to ${{ env.PHOENIX_VERSION }}' | |
committer: GitHub <[email protected]> | |
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
title: '[Release BOT] Bump patch 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 `patch-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 }}" |