Skip to content

Commit 433d9aa

Browse files
committed
🔧 ci: add auto-tag workflow for main branch
- Introduce a GitHub action to automatically generate tags on pushes to the main branch. - Utilize `butlerlogic/action-autotag` to create package version tags with prefix "v". - Automate versioning to streamline release process.
1 parent d69b78c commit 433d9aa

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

‎.github/workflows/auto-tag.yaml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Generate Tag
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- uses: butlerlogic/action-autotag@stable
14+
env:
15+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
16+
with:
17+
strategy: package
18+
tag_prefix: "v"
19+

0 commit comments

Comments
 (0)