Skip to content

Commit

Permalink
Release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
offbyone committed Nov 7, 2024
1 parent 1987b09 commit 6870d14
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Publish Binaries on Release

on:
release:
types: [created]

permissions:
contents: write
packages: write

jobs:
release-tailscale-s3-proxy:
strategy:
matrix:
os:
- linux
- darwin
arch:
- arm64
- amd64
name: release ${{ matrix.os }}/${{ matrix.arch}}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: wangyoucao577/go-release-action@2aa2977ad6a4534f9179e22bd0ff146a1e1d3466 # v1.52
with:
binary_name: tailscale-s3-proxy
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.os }}
goarch: ${{ matrix.arch }}

0 comments on commit 6870d14

Please sign in to comment.