Skip to content

Commit

Permalink
Merge branch 'main' into docker-action
Browse files Browse the repository at this point in the history
  • Loading branch information
k1LoW committed Jan 24, 2024
2 parents dd4ebd5 + a99243e commit 150a208
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/tag-v0.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Manage tag for v0
on:
push:
tags:
- "v0+.[0-9]+.[0-9]+"
jobs:
tag:
name: Manage tag
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v4
with:
ref: docker-action
-
uses: haya14busa/action-update-semver@v1
with:
major_version_tag_only: true
6 changes: 3 additions & 3 deletions .github/workflows/tag.yml → .github/workflows/tag-v1.yml
Original file line number Diff line number Diff line change
@@ -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: actions/checkout@v4
-
uses: haya14busa/action-update-semver@v1
with:
Expand Down

0 comments on commit 150a208

Please sign in to comment.