We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9fd81a commit 122fc70Copy full SHA for 122fc70
1 file changed
.github/workflows/auto-release.yml
@@ -0,0 +1,22 @@
1
+name: Tag LCDVN
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ tag:
8
+ runs-on: ubuntu-latest
9
+ permissions:
10
+ contents: write
11
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ with:
15
+ fetch-depth: 0
16
17
+ - name: Bump version & push tag
18
+ uses: anothrNick/github-tag-action@v1
19
+ env:
20
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21
+ TAG_PREFIX: v
22
+ DEFAULT_BUMP: patch
0 commit comments