v0.20.0 - Y9S2 Operators #43
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Go Binaries | |
on: | |
release: | |
types: [published] | |
workflow_dispatch: | |
jobs: | |
releases-matrix: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
goos: [linux, windows, darwin] | |
goarch: [amd64, arm64] | |
steps: | |
- uses: actions/checkout@v3 | |
- shell: bash | |
name: Set env variables | |
run: | | |
c=$(git rev-parse --short HEAD); b=$(git name-rev --name-only "$c"); echo "version=$c ($b branch)" >> $GITHUB_ENV | |
echo "ext=$( if [ '${{ matrix.goos }}' = 'windows' ]; then echo 'dll'; elif [ '${{ matrix.goos }}' = 'darwin' ]; then echo 'dylib'; elif [ '${{ matrix.goos }}' = 'linux' ]; then echo 'so'; fi )" >> $GITHUB_ENV | |
- uses: wangyoucao577/go-release-action@v1.38 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
goos: ${{ matrix.goos }} | |
goarch: ${{ matrix.goarch }} | |
goversion: "1.22.2" | |
pre_command: "go build -o libr6dissect.${{ env.ext }} -buildmode=c-shared exports/exports.go" | |
extra_files: "LICENSE README.md libr6dissect.h libr6dissect.${{ env.ext }}" | |
ldflags: "-X 'main.Version=${{ env.version }}'" |