Skip to content
This repository was archived by the owner on Oct 9, 2025. It is now read-only.

Commit ee934a4

Browse files
committed
fix(ci): update the release workflow to just push tag so goreleaser can take care of generating release with linked artifacts
1 parent d055cf7 commit ee934a4

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
release:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-24.04-arm
1111
permissions:
1212
contents: write
1313
packages: write

.github/workflows/tag-release.yaml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,16 @@ jobs:
3333
fetch-depth: 0
3434
token: ${{ steps.octo-sts.outputs.token }}
3535

36-
- uses: go-semantic-release/action@v1
37-
id: semantic-release
36+
- name: Calculate release version
37+
id: calculate_new_version
38+
uses: mathieudutour/github-tag-action@v6.2
3839
with:
39-
github-token: ${{ steps.octo-sts.outputs.token }}
40+
dry_run: true
41+
github_token: ${{ secrets.GITHUB_TOKEN }}
42+
43+
- name: Tag release
44+
id: push_tag
45+
uses: mathieudutour/github-tag-action@v6.2
46+
with:
47+
custom_tag: ${{ steps.calculate_new_version.outputs.new_version }}
48+
github_token: ${{ steps.octo-sts.outputs.token }}

0 commit comments

Comments
 (0)