Skip to content

Commit 96998a0

Browse files
authored
Fix conditional (#42)
1 parent 313b26f commit 96998a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/mirror.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup SSH and Push to Mirror
2121
run: |
2222
# 0. Check for the secret.
23-
if [[ -n "${{ secrets.GEMINI_CLI_EXTENSIONS_FLUTTER_MIRROR_KEY }}" ]]; then
23+
if [[ -z "${{ secrets.GEMINI_CLI_EXTENSIONS_FLUTTER_MIRROR_KEY }}" ]]; then
2424
echo "SSH Secret not available, exiting."
2525
exit 0
2626
fi

0 commit comments

Comments
 (0)