Skip to content

Commit d10ea0d

Browse files
committed
Move tags on release in a separate job
1 parent 7ac430d commit d10ea0d

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

.github/workflows/ci-cd.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,3 @@ jobs:
176176
prerelease: true
177177
tag_name: v${{ needs.version.outputs.semver }}
178178
token: ${{ secrets.PAT }} # using our own PAT so other workflows run
179-
- uses: fischerscode/[email protected]
180-
with:
181-
prefix: v
182-
tag: v${{ needs.version.outputs.semver }}

.github/workflows/move-tags.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Move Tags
2+
3+
on:
4+
release:
5+
types:
6+
- "created"
7+
8+
jobs:
9+
tags:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- uses: fischerscode/[email protected]
14+
with:
15+
prefix: v

0 commit comments

Comments
 (0)