Skip to content

Commit d0e4f0b

Browse files
authored
feat: add github actions auto release (#152)
1 parent c9fd81a commit d0e4f0b

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/auto-release.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)