Skip to content

Commit 2d66eca

Browse files
committed
fix: gate notarization on repository variable instead of self-referencing env
1 parent 5e67cd4 commit 2d66eca

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/build-plugin.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,7 @@ jobs:
8787
echo "x86_64=$X86_SHA" >> "$GITHUB_OUTPUT"
8888
8989
- name: Notarize
90-
if: env.NOTARIZE == 'true'
91-
env:
92-
NOTARIZE: "true"
90+
if: vars.NOTARIZE_PLUGINS == 'true'
9391
run: |
9492
for zip in build/Plugins/*.zip; do
9593
xcrun notarytool submit "$zip" \

0 commit comments

Comments
 (0)