Skip to content

Merge pull request #8 from i-VRESSE/dialog-on-top #48

Merge pull request #8 from i-VRESSE/dialog-on-top

Merge pull request #8 from i-VRESSE/dialog-on-top #48

Workflow file for this run

name: Build and publish docs to GitHub Pages
on:
# Runs on pushes targeting the default branch
push:
branches: [main]
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
docs:
name: Docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
cache-dependency-path: ./pnpm-lock.yaml
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Install dependencies
run: pnpm install
- name: Build docs
run: |
pnpm run docs
- name: nojekyll
run: |
touch docs/.nojekyll
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: docs
runs-on: ubuntu-latest
name: Deploy
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4