Skip to content

Commit

Permalink
Fix step conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
deathaxe committed Nov 12, 2023
1 parent 9c96066 commit 7dc67f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,19 +62,19 @@ jobs:

- name: Setup pages
id: setup-pages
if: steps.resolve-repository.outputs.updated == true
if: steps.resolve-repository.outputs.updated == 'true'
uses: actions/configure-pages@v3

- name: Upload pages
id: upload-pages
if: steps.resolve-repository.outputs.updated == true
if: steps.resolve-repository.outputs.updated == 'true'
uses: actions/upload-pages-artifact@v2
with:
path: _site/

deploy:
needs: build
if: needs.build.outputs.updated == true
if: needs.build.outputs.updated == 'true'

permissions:
pages: write
Expand Down

0 comments on commit 7dc67f6

Please sign in to comment.