Skip to content

Remove build:pdf target #38

Remove build:pdf target

Remove build:pdf target #38

Workflow file for this run

name: Build and deploy GitHub Pages
on:
push:
branches: ['main']
jobs:
build-deploy:
runs-on: ubuntu-latest
permissions:
deployments: write
id-token: write
pages: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 21.x
cache: 'yarn'
- run: yarn --frozen-lockfile
- run: yarn build
- uses: actions/upload-pages-artifact@v3
with:
path: build/
- uses: actions/deploy-pages@v4
id: deployment