Skip to content

Introduce workspace definitions and executables starting with open an… #2

Introduce workspace definitions and executables starting with open an…

Introduce workspace definitions and executables starting with open an… #2

Workflow file for this run

name: Release Binaries
on:
push:
tags:
- "*"
jobs:
releases-matrix:
name: Release Go Binary
runs-on: ubuntu-latest
strategy:
matrix:
# build and publish in parallel: linux/amd64, linux/arm64, darwin/amd64, darwin/arm64
goos: [linux, darwin]
goarch: [amd64, arm64]
steps:
- uses: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: "1.21"
extra_files: LICENSE README.md