We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feb46bd commit 698a4f0Copy full SHA for 698a4f0
1 file changed
.github/workflows/release.yml
@@ -9,21 +9,22 @@ jobs:
9
goreleaser:
10
runs-on: ubuntu-latest
11
permissions:
12
- contents: write # 릴리스 업로드 필요
+ contents: write # ⬅️ 중요
13
steps:
14
- name: Checkout
15
uses: actions/checkout@v4
16
+ with:
17
+ fetch-depth: 0 # 태그/히스토리 필요
18
19
- name: Set up Go
20
uses: actions/setup-go@v5
21
with:
- go-version: "1.22" # 사용 중인 Go 버전으로
22
+ go-version: "1.22"
23
- - name: Install GoReleaser
24
+ - name: GoReleaser
25
uses: goreleaser/goreleaser-action@v6
26
27
version: latest
28
args: release --clean
-
- - name: Show artifacts
29
- run: ls -alh dist || true
+ env:
30
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # ⬅️ 중요
0 commit comments