We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bae487 commit 1b113b8Copy full SHA for 1b113b8
2 files changed
.github/workflows/release.yml
@@ -0,0 +1,29 @@
1
+name: release
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
8
+permissions:
9
+ contents: write
10
11
+jobs:
12
+ goreleaser:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ with:
17
+ fetch-depth: 0
18
19
+ - uses: actions/setup-go@v5
20
21
+ go-version-file: go.mod
22
23
+ - uses: goreleaser/goreleaser-action@v6
24
25
+ version: "~> v2"
26
+ args: release --clean
27
+ env:
28
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29
+ HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }}
.goreleaser.yml
@@ -20,5 +20,6 @@ brews:
- repository:
owner: warriorscode
name: homebrew-tap
+ token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
homepage: https://github.com/warriorscode/deck
description: Lightweight local dev orchestrator
0 commit comments