Skip to content

Go Release Binaries

Go Release Binaries #2

Workflow file for this run

name: Go Release Binaries
on:
release:
types: [created]
permissions:
contents: write
packages: write
jobs:
release-linux-amd64:
name: release linux/amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1
with:

Check failure on line 18 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Go Release Binaries

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 18, Col: 5): Unexpected value 'with' .github/workflows/release.yml (Line: 29, Col: 5): Unexpected value 'with'

Check failure on line 18 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Go Release Binaries

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 18, Col: 5): Unexpected value 'with' .github/workflows/release.yml (Line: 29, Col: 5): Unexpected value 'with'
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: amd64
release-linux-arm7:
name: release linux/arm-7
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: arm
goarm: 7
release-darwin-amd64:
name: release darwin/amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: darwin
goarch: amd64