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