Skip to content

Add GoReleaser settings (binary) #2

Add GoReleaser settings (binary)

Add GoReleaser settings (binary) #2

Workflow file for this run

name: release
on:
pull_request:
push:
#tags:
# - "v*"
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- uses: goreleaser/goreleaser-action@v6
distribution: goreleaser

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

View workflow run for this annotation

GitHub Actions / release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 23, Col: 9): Unexpected value 'distribution'
with:
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}