-
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
1 parent
ccce346
commit 4bebae9
Showing
1 changed file
with
58 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# workflow to build docs site and publish to github pages | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: main | ||
pull_request: | ||
branches: main | ||
|
||
name: sverto-publish | ||
|
||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
build-docs: | ||
runs-on: "ubuntu-latest" | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install Quarto | ||
uses: quarto-dev/quarto-actions/setup@v2 | ||
with: | ||
version: 1.5.25 | ||
- name: Install Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
- name: Install Sverto docs npm dependencies | ||
run: npm install | ||
working-directory: ./docs | ||
- name: Create docs _extensions folder | ||
run: mkdir docs/_extensions | ||
shell: bash | ||
- name: Copy Sverto extension into docs | ||
run: cp -rf _extensions/sverto docs/_extensions/sverto | ||
shell: bash | ||
- name: Render sverto docs | ||
uses: quarto-dev/quarto-actions/render@v2 | ||
with: | ||
path: docs | ||
- name: Setup Pages | ||
uses: actions/configure-pages@v5 | ||
- name: Upload docs/ artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: "./docs" | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 | ||
|