Skip to content

Commit 6870d14

Browse files
committed
Release workflow
1 parent 1987b09 commit 6870d14

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/release.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Publish Binaries on Release
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
permissions:
8+
contents: write
9+
packages: write
10+
11+
jobs:
12+
release-tailscale-s3-proxy:
13+
strategy:
14+
matrix:
15+
os:
16+
- linux
17+
- darwin
18+
arch:
19+
- arm64
20+
- amd64
21+
name: release ${{ matrix.os }}/${{ matrix.arch}}
22+
runs-on: ubuntu-latest
23+
steps:
24+
- uses: actions/checkout@v4
25+
- uses: wangyoucao577/go-release-action@2aa2977ad6a4534f9179e22bd0ff146a1e1d3466 # v1.52
26+
with:
27+
binary_name: tailscale-s3-proxy
28+
github_token: ${{ secrets.GITHUB_TOKEN }}
29+
goos: ${{ matrix.os }}
30+
goarch: ${{ matrix.arch }}

0 commit comments

Comments
 (0)