Skip to content

v0.7.0

v0.7.0 #5

Workflow file for this run

name: Release
on:
release:
types: [published]
jobs:
release-zips:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version: '1.21.x'
- run: CGO_ENABLED=0 make release
- run: gh release upload ${{ github.event.release.tag_name }} *.zip
env:
GH_TOKEN: ${{ github.token }}