Skip to content

bump

bump #45

Workflow file for this run

name: bump
on:
workflow_dispatch:
jobs:
bump:
name: increase version numbers
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: configure git
run: |
git config --global user.name 'github-actions'
git config --global user.email '[email protected]'
- name: create local release branch
run: git fetch origin release:release
- name: check change files
run: node common/scripts/install-run-rush.js change --verify --target-branch origin/release
- name: bump versions
run: node common/scripts/install-run-rush.js version --bump --target-branch release
- name: merge back release branch
run: |
git checkout "${GITHUB_REF##*/}"
git fetch origin release
git merge release
git push origin "${GITHUB_REF##*/}"