Skip to content

Commit

Permalink
Swap binary name and arch for better sorting
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Saveau <[email protected]>
  • Loading branch information
SUPERCILEX committed Aug 4, 2024
1 parent 821be70 commit 39a30a4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,29 +116,29 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/${{ matrix.target }}/release/rmz
asset_name: rmz-${{ matrix.target }}
asset_name: ${{ matrix.target }}-rmz
tag: ${{ github.ref }}
- name: Upload binary
if: matrix.os != 'windows-latest'
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/${{ matrix.target }}/release/cpz
asset_name: cpz-${{ matrix.target }}
asset_name: ${{ matrix.target }}-cpz
tag: ${{ github.ref }}
- name: Upload binary
if: matrix.os == 'windows-latest'
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/${{ matrix.target }}/release/rmz.exe
asset_name: rmz-${{ matrix.target }}.exe
asset_name: ${{ matrix.target }}-rmz.exe
tag: ${{ github.ref }}
- name: Upload binary
if: matrix.os == 'windows-latest'
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/${{ matrix.target }}/release/cpz.exe
asset_name: cpz-${{ matrix.target }}.exe
asset_name: ${{ matrix.target }}-cpz.exe
tag: ${{ github.ref }}

0 comments on commit 39a30a4

Please sign in to comment.