Skip to content

Commit

Permalink
Fix: Preview secrets check
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
marcustyphoon committed Aug 6, 2024
1 parent 968bc87 commit 029792c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/previews-cf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Check that secrets exist
id: check-secret-step
run: |
if [ "${{ secrets.CF_GLOBAL_APIKEY }}" != '' ]; then
if [ "${{ secrets.CI_CF_PAGES }}" != '' ]; then
echo "exists=true" >> $GITHUB_OUTPUT;
else
echo "exists=false" >> $GITHUB_OUTPUT;
Expand Down

0 comments on commit 029792c

Please sign in to comment.