We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3befef commit cab09feCopy full SHA for cab09fe
.github/workflows/release.yml
@@ -0,0 +1,33 @@
1
+name: goreleaser
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
+ - name: Checkout
16
+ uses: actions/checkout@v3
17
+ with:
18
+ fetch-depth: 0
19
20
+ - name: Set up Go
21
+ uses: actions/setup-go@v4
22
23
+ go-version-file: "go.mod"
24
25
+ - name: Run GoReleaser
26
+ uses: goreleaser/goreleaser-action@v4
27
28
+ distribution: goreleaser
29
+ version: latest
30
+ args: release --clean
31
+ workdir: ./cmd/ssh-sign/
32
+ env:
33
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments