-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This requires additional changes in the repository GitHub Pages settings. _Source_ needs to be set to _GitHub Actions_, and a custom domain needs to be configured. This doesn’t support redirects.
- Loading branch information
1 parent
fdfe17b
commit d60f8d4
Showing
3 changed files
with
25 additions
and
179 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,25 @@ | ||
name: website | ||
on: | ||
push: | ||
branches: [main] | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
environment: | ||
name: Website | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
with: {node-version: 18} | ||
- run: npm ci | ||
- run: npm run docs | ||
- uses: actions/upload-pages-artifact@v2 | ||
with: | ||
path: public | ||
- uses: actions/deploy-pages@v2 | ||
id: deployment |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.