Version bump #70
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: Version bump | |
on: | |
workflow_dispatch: | |
inputs: | |
tag_name: | |
description: 'Version' | |
required: true | |
jobs: | |
version-bump: | |
name: Update dist | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: "16" | |
- name: Install dependancies | |
run: yarn install | |
- name: Build source code | |
run: yarn build | |
- name: Test built source code | |
run: yarn run test-dist | |
- name: Setup Git | |
run: | | |
git config user.name gkr-bot | |
git config user.email [email protected] | |
- name: Version bump on package.json | |
run: yarn version --new-version ${{ github.event.inputs.tag_name }} --no-git-tag-version | |
- name: Commit the changes | |
run: | | |
git add ./dist/blog-post-workflow.js ./package.json | |
git commit -m "[skip-ci] Published ${{ github.event.inputs.tag_name }}" | |
- name: Push to repository | |
run: git push --quiet |