-
Notifications
You must be signed in to change notification settings - Fork 28
33 lines (33 loc) · 966 Bytes
/
version-bump.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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@v3
with:
node-version: "20"
cache: "yarn"
- name: Install dependancies
run: yarn install
- name: Build source code
run: yarn build-github
- 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 ./package.json
git commit -m "[skip-ci] Published ${{ github.event.inputs.tag_name }}"
- name: Push to repository
run: git push --quiet