diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 7edc050..2596e6b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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