From 6ca55e7c2504c2ce7bb446f4e6511f8291783568 Mon Sep 17 00:00:00 2001 From: Victor Wads Date: Wed, 14 Aug 2024 16:43:11 -0300 Subject: [PATCH] fix macos filename on CI --- .github/workflows/macos_bundle_arm64.yml | 4 ++-- .github/workflows/macos_bundle_x86_64.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/macos_bundle_arm64.yml b/.github/workflows/macos_bundle_arm64.yml index ef18a3c..79b2a58 100644 --- a/.github/workflows/macos_bundle_arm64.yml +++ b/.github/workflows/macos_bundle_arm64.yml @@ -26,6 +26,6 @@ jobs: uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.TOKEN }} - file: macOs/QRookie_${{ github.ref }}_arm64.dmg - asset_name: QRookie_${{ github.ref }}_arm64.dmg + file: macOs/QRookie_${{ github.event.release.tag_name }}_arm64.dmg + asset_name: QRookie_${{ github.event.release.tag_name }}_arm64.dmg tag: ${{ github.ref }} \ No newline at end of file diff --git a/.github/workflows/macos_bundle_x86_64.yml b/.github/workflows/macos_bundle_x86_64.yml index d334e1d..4184afd 100644 --- a/.github/workflows/macos_bundle_x86_64.yml +++ b/.github/workflows/macos_bundle_x86_64.yml @@ -26,6 +26,6 @@ jobs: uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.TOKEN }} - file: macOs/QRookie_${{ github.ref }}_x86_64.dmg - asset_name: QRookie_${{ github.ref }}_x86_64.dmg + file: macOs/QRookie_${{ github.event.release.tag_name }}_x86_64.dmg + asset_name: QRookie_${{ github.event.release.tag_name }}_x86_64.dmg tag: ${{ github.ref }} \ No newline at end of file