Skip to content

Commit

Permalink
fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup!…
Browse files Browse the repository at this point in the history
… fixup! Allow building all the slides at once
  • Loading branch information
tdittr committed Aug 12, 2024
1 parent 0478c3d commit 020540d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ jobs:
- name: Install dependencies
run: npm install
- name: Build
run: npm run build -- --base /${{github.event.repository.name}}/slides/ *.md
run: |
for f in *.md; do
npm run build -- --base /${{github.event.repository.name}}/slides/$(basename $f .md) --out dist/$(basename $f .md) $f
done
- uses: actions/upload-artifact@v4
with:
name: slides-output
Expand Down

0 comments on commit 020540d

Please sign in to comment.