Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

Commit

Permalink
Added Artifact suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
swissbuechi committed Jul 5, 2022
1 parent 6c3b857 commit 7a737ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-native-artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ jobs:
- name: Upload archive
uses: actions/upload-artifact@v3
with:
name: ${{ github.event.repository.name }}-${{ github.ref_name }}-${{ matrix.asset_name }}
name: ${{ github.event.repository.name }}-${{ github.ref_name }}-${{ matrix.asset_name }}${{ matrix.executable-suffix }}
path: target/app${{ matrix.executable-suffix }}

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/app${{ matrix.executable-suffix }}
asset_name: ${{ github.event.repository.name }}-${{ github.ref_name }}-${{ matrix.asset_name }}
asset_name: ${{ github.event.repository.name }}-${{ github.ref_name }}-${{ matrix.asset_name }}${{ matrix.executable-suffix }}
tag: ${{ github.ref }}

0 comments on commit 7a737ec

Please sign in to comment.