Skip to content

Commit 6692016

Browse files
authored
Merge pull request #989 from web3dev1337/fix/macos-release-verify-gate
fix(ci): gate macos verify behind release upload flag
2 parents 7017c68 + c217cff commit 6692016

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
node scripts/tauri/run-tauri-build.js --profile ${{ steps.build_profile.outputs.value }} --bundles $MACOS_BUNDLES
100100
101101
- name: Verify signed + notarized macOS bundle
102-
if: startsWith(github.ref, 'refs/tags/')
102+
if: startsWith(github.ref, 'refs/tags/') && env.MACOS_RELEASE_UPLOAD_ENABLED == 'true'
103103
run: |
104104
app_path="$(find "src-tauri/target/${{ steps.build_profile.outputs.target_dir }}/bundle/macos" -maxdepth 1 -type d -name '*.app' | head -n 1)"
105105
bash scripts/release/verify-macos-bundle.sh "$app_path"

0 commit comments

Comments
 (0)