File tree Expand file tree Collapse file tree 2 files changed +53
-0
lines changed
Expand file tree Collapse file tree 2 files changed +53
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ push :
5+ tags :
6+ - " *"
7+
8+ permissions :
9+ contents : write
10+ id-token : write
11+
12+ jobs :
13+ goreleaser :
14+ runs-on : ubuntu-latest
15+ steps :
16+ - name : Checkout
17+ uses : actions/checkout@v4
18+ with :
19+ fetch-depth : 0
20+
21+ - name : Set up Go
22+ uses : actions/setup-go@v5
23+ with :
24+ go-version : stable
25+
26+ - name : Install Cosign
27+ uses : sigstore/cosign-installer@v3.8.1
28+ with :
29+ cosign-release : ' v2.4.3'
30+
31+ - name : Run GoReleaser
32+ uses : goreleaser/goreleaser-action@v6
33+ with :
34+ version : " ~> v2"
35+ args : release --clean
36+ env :
37+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1+ builds :
2+ - main : ./cmd/git-credential-github-app
3+ goos :
4+ - linux
5+ - darwin
6+ goarch :
7+ - amd64
8+ - arm64
9+
10+ - main : ./cmd/git-credential-github-app-gcpkms
11+ goos :
12+ - linux
13+ - darwin
14+ goarch :
15+ - amd64
16+ - arm64
You can’t perform that action at this time.
0 commit comments