From 7a737ec387ab51f54a1b9752d52581ae7b0bcca1 Mon Sep 17 00:00:00 2001 From: swissbuechi Date: Tue, 5 Jul 2022 11:23:30 +0200 Subject: [PATCH] Added Artifact suffix --- .github/workflows/deploy-native-artifact.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-native-artifact.yml b/.github/workflows/deploy-native-artifact.yml index 2fecee3..759417f 100644 --- a/.github/workflows/deploy-native-artifact.yml +++ b/.github/workflows/deploy-native-artifact.yml @@ -44,7 +44,7 @@ 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 @@ -52,5 +52,5 @@ jobs: 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 }} \ No newline at end of file