Skip to content

Commit

Permalink
debug: fixes logical check in bash
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmcguin committed Aug 22, 2024
1 parent 65a5f2f commit 3125917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
if: ${{ steps.changes.outputs.sites }}
id: matrix
run: |
if [[ ${{ steps.changes.outputs.packages }} == true ]] || [[ ${{ steps.changes.outputs.deps == true }} ]]; then
if [[ ${{ steps.changes.outputs.packages }} == true ]] || [[ ${{ steps.changes.outputs.deps }} == true ]]; then
node ./scripts/build_sites.mjs --all
elif [[ ${{ steps.changes.outputs.sites }} == true ]]; then
node ./scripts/build_sites.mjs
Expand Down

0 comments on commit 3125917

Please sign in to comment.