Files
tuipart/.github/workflows/release.yml
Syed Daanish 29437b95af
Some checks failed
Go / build (push) Has been cancelled
Update github workflow and add screenshot
2025-10-03 12:08:58 +01:00

24 lines
448 B
YAML

name: Build and Release Go Binary
on:
release:
types: [created]
permissions:
contents: write
packages: write
# TODO: add support for other platforms
jobs:
release-linux-amd64:
name: release linux/amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: amd64