Skip to content

Commit 150a208

Browse files
committed
Merge branch 'main' into docker-action
2 parents dd4ebd5 + a99243e commit 150a208

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

.github/workflows/tag-v0.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
18+
major_version_tag_only: true

.github/workflows/tag.yml renamed to .github/workflows/tag-v1.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
name: Manage tag
1+
name: Manage tag for v1
22
on:
33
push:
44
tags:
5-
- "v[0-9]+.[0-9]+.[0-9]+"
5+
- "v1+.[0-9]+.[0-9]+"
66
jobs:
77
tag:
88
name: Manage tag
99
runs-on: ubuntu-latest
1010
steps:
1111
-
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313
-
1414
uses: haya14busa/action-update-semver@v1
1515
with:

0 commit comments

Comments
 (0)