Skip to content

Merge branch 'create-abstract-content-page' of github.com:ssciwr/mond… #14

Merge branch 'create-abstract-content-page' of github.com:ssciwr/mond…

Merge branch 'create-abstract-content-page' of github.com:ssciwr/mond… #14

Workflow file for this run

name: Build and deploy to gh-pages
on: push
jobs:
build:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- run: pnpm install
- run: pnpm run build
env:
BASE_PATH: '/${{ github.event.repository.name }}'
- uses: actions/upload-pages-artifact@v3
with:
path: 'build/'
deploy:
if: github.ref == 'refs/heads/main'
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/deploy-pages@v4
id: deployment