-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
35 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,44 @@ | ||
on: | ||
push: | ||
branches: [main, master] | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
push: | ||
branches: [main, master] | ||
release: | ||
types: [published] | ||
workflow_dispatch: {} | ||
|
||
name: demo-website | ||
|
||
jobs: | ||
demo-website: | ||
runs-on: ubuntu-latest | ||
# Only restrict concurrency for non-PR jobs | ||
concurrency: | ||
group: quarto-website-${{ github.event_name != 'pull_request' || github.run_id }} | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: "Check out repository" | ||
uses: actions/checkout@v3 | ||
demo-website: | ||
runs-on: ubuntu-latest | ||
# Only restrict concurrency for non-PR jobs | ||
concurrency: | ||
group: quarto-website-${{ github.event_name != 'pull_request' || github.run_id }} | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: "Check out repository" | ||
uses: actions/checkout@v3 | ||
|
||
# To render using knitr, we need a few more setup steps... | ||
# If we didn't want the examples to use `engine: knitr`, we could | ||
# skip a few of the setup steps. | ||
- name: "Setup R" | ||
uses: r-lib/actions/setup-r@v2 | ||
# To render using knitr, we need a few more setup steps... | ||
# If we didn't want the examples to use `engine: knitr`, we could | ||
# skip a few of the setup steps. | ||
- name: "Setup R" | ||
uses: r-lib/actions/setup-r@v2 | ||
|
||
- name: "Setup R dependencies for Quarto's knitr engine" | ||
uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
packages: | ||
any::knitr | ||
any::rmarkdown | ||
any::downlit | ||
any::xml2 | ||
- name: "Setup R dependencies for Quarto's knitr engine" | ||
uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
packages: | ||
any::knitr | ||
any::rmarkdown | ||
any::downlit | ||
any::xml2 | ||
|
||
# Back to our regularly scheduled Quarto output | ||
- name: "Set up Quarto" | ||
uses: quarto-dev/quarto-actions/setup@v2 | ||
# Back to our regularly scheduled Quarto output | ||
- name: "Set up Quarto" | ||
uses: quarto-dev/quarto-actions/setup@v2 | ||
|
||
- name: "Render and Publish" | ||
uses: quarto-dev/quarto-actions/publish@v2 | ||
with: | ||
target: gh-pages | ||
- name: "Render and Publish" | ||
uses: quarto-dev/quarto-actions/publish@v2 | ||
with: | ||
target: gh-pages |