Skip to content

Commit

Permalink
u
Browse files Browse the repository at this point in the history
  • Loading branch information
HDembinski committed Oct 12, 2024
1 parent c1ec2f7 commit eb37f01
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,19 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: quarto-dev/quarto-actions/setup@v2
- run: |
pip install nbformat
python auto_add_date.py posts/*.ipynb
- run: quarto render
- uses: actions/upload-pages-artifact@v3
with:
path: '_site'
# fetch-depth required by auto_add_date.py
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: quarto-dev/quarto-actions/setup@v2
- uses: actions/setup-python@v5
- run: |
pip install nbformat
python auto_add_date.py posts/*.ipynb
- run: quarto render
- uses: actions/upload-pages-artifact@v3
with:
path: "_site"

deploy:
needs: build
Expand All @@ -40,5 +42,5 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/configure-pages@v4
- uses: actions/deploy-pages@v4
- uses: actions/configure-pages@v4
- uses: actions/deploy-pages@v4

0 comments on commit eb37f01

Please sign in to comment.