Skip to content

Commit

Permalink
fix release-bundle names
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Odermatt committed Nov 2, 2021
1 parent 0290ba1 commit 4c97ad1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: '^1.17'
- run: GOOS=${{ matrix.GOOS }} GOARCH=${{ matrix.GOARCH }} go build -o protoc-gen-go-sql-{{matrix.GOOS}}-{{matrix.GOARCH}}
- run: GOOS=${{ matrix.GOOS }} GOARCH=${{ matrix.GOARCH }} go build -o protoc-gen-go-sql-${{ matrix.GOOS }}-${{ matrix.GOARCH }}
- uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: protoc-gen-go-sql-{{matrix.GOOS}}-{{matrix.GOARCH}}
file: protoc-gen-go-sql-${{ matrix.GOOS }}-${{ matrix.GOARCH }}
tag: ${{ github.ref }}
asset_name: protoc-gen-go-sql-{{matrix.GOOS}}-{{matrix.GOARCH}}
asset_name: protoc-gen-go-sql-${{ matrix.GOOS }}-${{ matrix.GOARCH }}
overwrite: false
prerelease: false

0 comments on commit 4c97ad1

Please sign in to comment.