Skip to content

Commit 67aec66

Browse files
committed
fix(workflows): remove prefix
1 parent 1af3fa6 commit 67aec66

File tree

1 file changed

+15
-16
lines changed

1 file changed

+15
-16
lines changed

.github/workflows/release.yml

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: release
33
on:
44
push:
55
tags:
6-
- 'v*.*.*'
6+
- "*.*.*"
77

88
permissions:
99
contents: write
@@ -15,20 +15,19 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v2
19-
with:
20-
fetch-depth: 0
18+
- uses: actions/checkout@v2
19+
with:
20+
fetch-depth: 0
2121

22-
- uses: actions/setup-go@v2
23-
with:
24-
go-version: '1.21'
25-
26-
- name: Release
27-
uses: goreleaser/goreleaser-action@v5
28-
with:
29-
version: nightly
30-
args: release --clean
31-
env:
32-
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
33-
LINKEDIN_ACCESS_TOKEN: ${{ secrets.LINKEDIN_ACCESS_TOKEN }}
22+
- uses: actions/setup-go@v2
23+
with:
24+
go-version: "1.21"
3425

26+
- name: Release
27+
uses: goreleaser/goreleaser-action@v5
28+
with:
29+
version: nightly
30+
args: release --clean
31+
env:
32+
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
33+
LINKEDIN_ACCESS_TOKEN: ${{ secrets.LINKEDIN_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)