Skip to content

Commit

Permalink
Cleans up syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
danielxvu committed Oct 1, 2023
1 parent 849f8eb commit b9c5f47
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/use-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
# Set job outputs to values from filter step
outputs:
sheet: ${{ steps.filter.outputs.sheet }}
sheet_files: ${{ steps.filter.outputs.sheet_files }}
force_update: ${{ steps.filter.outputs.force-update }}
sheet-json: ${{ steps.filter.outputs.sheet_files }}
force-update: ${{ steps.filter.outputs.force-update }}
steps:
- uses: actions/checkout@v3
- uses: dorny/paths-filter@v2
Expand Down Expand Up @@ -61,15 +61,15 @@ jobs:
command: install
args: fd-find
- run: make clean
- run: bun run contrib/sheet-pixie/index.ts ${{ needs.changes.outputs.sheet_files }}
- run: bun run contrib/sheet-pixie/index.ts ${{ needs.changes.outputs.sheet-json }}
- run: bash update.sh
- run: bash sync_sheets.sh


force-update:
name: Process HTML/CSS for all character sheets (force-update)
needs: changes
if: ${{ needs.changes.outputs.sheet != 'true' && needs.changes.outputs.force_update == 'true'}}
if: ${{ needs.changes.outputs.sheet != 'true' && needs.changes.outputs.force-update == 'true'}}
runs-on: ubuntu-latest
env:
NPM_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
Expand Down

0 comments on commit b9c5f47

Please sign in to comment.