Skip to content

Commit

Permalink
quarto debug
Browse files Browse the repository at this point in the history
checkout first doh

more actions debug

ah quarto is nesting output
  • Loading branch information
adonm committed Mar 23, 2024
1 parent 5f218b0 commit 1874e99
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Deploy to GitHub Pages and build release if tagged
permissions:
contents: write
pages: write
id-token: write

on: ["workflow_dispatch", "push"]
jobs:
Expand All @@ -12,22 +13,25 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Render Quarto Project
- name: Setup quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: Render docs
run: quarto render nbs
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "_docs"
path: "nbs/_docs/"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
release:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
Expand Down

0 comments on commit 1874e99

Please sign in to comment.