Skip to content

Commit

Permalink
fix format error in release action
Browse files Browse the repository at this point in the history
  • Loading branch information
francoismichel committed Dec 11, 2023
1 parent 254bfe4 commit 61a93ed
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,22 @@ jobs:
matrix:
osvariant: [ { imgname: ubuntu-latest, goarch: linux }, { imgname: macos-latest, goarch: darwin } ]
runs-on: ${{ matrix.osvariant.imgname }}
steps:
-
name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v4
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
# either 'goreleaser' (default) or 'goreleaser-pro'
distribution: goreleaser
version: latest
args: release --clean --config .goreleaser-${{ matrix.osvariant.goarch }}.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
-
name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v4
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
# either 'goreleaser' (default) or 'goreleaser-pro'
distribution: goreleaser
version: latest
args: release --clean --config .goreleaser-${{ matrix.osvariant.goarch }}.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 61a93ed

Please sign in to comment.