Skip to content

Commit be90e69

Browse files
committed
Add major tagging workflow to automate version tagging on push
1 parent edf97ec commit be90e69

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/major-tagging.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: major-tagging
2+
3+
on:
4+
push:
5+
tags:
6+
- v** # Trigger on every tag push
7+
8+
jobs:
9+
tag:
10+
name: Move major tag
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: phwt/major-tagging-action@v1

0 commit comments

Comments
 (0)