From da054b7a9af573d2c150d704ed2812b1379ede4c Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Fri, 21 Feb 2025 12:45:54 +0100 Subject: [PATCH] fix bundle path --- .github/workflows/pre-release.yml | 4 ++-- .github/workflows/tagged-release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index fccf41c..5beeab1 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -97,7 +97,7 @@ jobs: run: cargo bundle --release - name: Zip bundle run: | - cd target/debug/bundle/osx + cd target/release/bundle/osx zip -r "Lan Mouse macOS (Intel).zip" "Lan Mouse.app" - name: Upload build artifact uses: actions/upload-artifact@v4 @@ -123,7 +123,7 @@ jobs: run: cargo bundle --release - name: Zip bundle run: | - cd target/debug/bundle/osx + cd target/release/bundle/osx zip -r "Lan Mouse macOS (ARM).zip" "Lan Mouse.app" - name: Upload build artifact uses: actions/upload-artifact@v4 diff --git a/.github/workflows/tagged-release.yml b/.github/workflows/tagged-release.yml index 79a17aa..9b2cdcc 100644 --- a/.github/workflows/tagged-release.yml +++ b/.github/workflows/tagged-release.yml @@ -93,7 +93,7 @@ jobs: run: cargo bundle --release - name: Zip bundle run: | - cd target/debug/bundle/osx + cd target/release/bundle/osx zip -r "Lan Mouse macOS (Intel).zip" "Lan Mouse.app" - name: Upload build artifact uses: actions/upload-artifact@v4 @@ -119,7 +119,7 @@ jobs: run: cargo bundle --release - name: Zip bundle run: | - cd target/debug/bundle/osx + cd target/release/bundle/osx zip -r "Lan Mouse macOS (ARM).zip" "Lan Mouse.app" - name: Upload build artifact uses: actions/upload-artifact@v4