We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dd4ebd5 + a99243e commit 150a208Copy full SHA for 150a208
.github/workflows/tag-v0.yml
@@ -0,0 +1,18 @@
1
+name: Manage tag for v0
2
+on:
3
+ push:
4
+ tags:
5
+ - "v0+.[0-9]+.[0-9]+"
6
+jobs:
7
+ tag:
8
+ name: Manage tag
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ -
12
+ uses: actions/checkout@v4
13
+ with:
14
+ ref: docker-action
15
16
+ uses: haya14busa/action-update-semver@v1
17
18
+ major_version_tag_only: true
.github/workflows/tag.yml renamed to .github/workflows/tag-v1.yml
@@ -1,15 +1,15 @@
-name: Manage tag
+name: Manage tag for v1
on:
push:
tags:
- - "v[0-9]+.[0-9]+.[0-9]+"
+ - "v1+.[0-9]+.[0-9]+"
jobs:
tag:
name: Manage tag
runs-on: ubuntu-latest
steps:
-
- uses: actions/checkout@v3
uses: haya14busa/action-update-semver@v1
with:
0 commit comments