Skip to content

Commit

Permalink
chore: fix release naming
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusramberg committed Apr 29, 2024
1 parent 1c4cfaf commit f7d12b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ jobs:

- name: Build
run: |
env GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -v -o nix-helmfile-${{ matrix.os }}-${{ matrix.arch }}
env GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -v -o helmfile-nix-${{ matrix.os }}-${{ matrix.arch }}
- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./nix-helmfile-${{ matrix.os }}-${{ matrix.arch }}
asset_name: nix-helmfile-${{ matrix.os }}-${{ matrix.arch }}
asset_path: ./helmfile-nix-${{ matrix.os }}-${{ matrix.arch }}
asset_name: helmfile-nix-${{ matrix.os }}-${{ matrix.arch }}
asset_content_type: application/octet-stream

0 comments on commit f7d12b0

Please sign in to comment.