Skip to content

Commit c0fa239

Browse files
authored
ci: add major-version-tag workflow (#24)
1 parent b60d8b0 commit c0fa239

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Major version tag
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
tags: ["v[0-9]+.*"]
7+
8+
jobs:
9+
major-version-tag:
10+
name: Major version tag
11+
permissions:
12+
contents: write
13+
runs-on: ubuntu-24.04
14+
steps:
15+
- name: Checkout repository
16+
uses: actions/checkout@v5
17+
18+
- name: Create or update major version tag
19+
uses: minvws/action-major-version-tag@v1

0 commit comments

Comments
 (0)