Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/deploy-docs-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
steps:
- name: Check out repository
uses: actions/checkout@v2
with:
fetch-depth: 0 # Fetch all branches

- name: Fetch Quarto
uses: ./.github/actions/fetch-quarto
Expand All @@ -41,7 +43,7 @@ jobs:
uses: dorny/paths-filter@v2
id: filter
with:
base: origin/prod
base: prod
ref: ${{ github.sha }}
filters: |
notebooks:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/deploy-docs-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
steps:
- name: Check out repository
uses: actions/checkout@v2
with:
fetch-depth: 0 # Fetch all branches

- name: Fetch Quarto
uses: ./.github/actions/fetch-quarto
Expand All @@ -41,7 +43,7 @@ jobs:
uses: dorny/paths-filter@v2
id: filter
with:
base: origin/staging
base: staging
ref: ${{ github.sha }}
filters: |
notebooks:
Expand Down