-
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (40 loc) · 1018 Bytes
/
bump-version.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
34
35
36
37
38
39
40
41
42
name: bump-version
on:
workflow_dispatch:
inputs:
version:
type: choice
description: Select version bump
options:
- patch
- minor
- major
jobs:
bump-version:
runs-on: ubuntu-latest
permissions:
contents: write
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.RELEASE_SSH_KEY }}
- uses: actions/setup-node@v4
with:
cache: "yarn"
node-version-file: ".tool-versions"
- name: Setup build dependencies
run: |
make deps
yarn install
- name: Configure Git user
run: |
git config user.name "jocmp"
git config user.email "[email protected]"
- name: Build
run: |
make build
git add dist/
- name: Bump Version
run: |
bumpver update --${{ github.event.inputs.version }} --allow-dirty