Skip to content

Commit

Permalink
fix boolean check
Browse files Browse the repository at this point in the history
  • Loading branch information
Pxtl authored Nov 28, 2023
1 parent f6d1a02 commit 4139096
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ on:

env:
YAML_PATH: .github/workflows/publish-website.yml
IS_WEBSITE_REPO_SET: ${{ vars.WEBSITE_REPO == null }}
IS_WEBSITE_PAT_SET: ${{ secrets.WEBSITE_PAT == null }}
IS_WEBSITE_REPO_SET: ${{ vars.WEBSITE_REPO != null }}
IS_WEBSITE_PAT_SET: ${{ secrets.WEBSITE_PAT != null }}
jobs:
publish:
runs-on: windows-latest
Expand Down

0 comments on commit 4139096

Please sign in to comment.