We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1d1704 commit f28b497Copy full SHA for f28b497
.github/workflows/add-tag.yml
@@ -0,0 +1,30 @@
1
+name: add tag
2
+
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ bump:
7
+ type: choice
8
+ description: 'Bump the version'
9
+ required: true
10
+ options:
11
+ - major
12
+ - minor
13
+ - patch
14
15
16
+jobs:
17
+ add-tag:
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - name: Checkout
21
+ uses: actions/checkout@v3
22
23
+ - name: Setup git-bump
24
+ uses: KeisukeYamashita/[email protected]
25
+ with:
26
+ repository: babarot/git-bump
27
+ arch: x86_64
28
29
+ - name: Bump version
30
+ run: git-bump ${{ github.event.inputs.bump }}
README.md
0 commit comments