Skip to content

Update deploy.yml

Update deploy.yml #50

Workflow file for this run

name: Deploy Quartz site to GitHub Pages
on:
push:
branches:
- v4
repository_dispatch:
types: [build]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PAT }}
fetch-depth: 0 # Fetch all history for git info
submodules: "recursive"
- name: Install Dependencies
run: npm ci
- name: Build Quartz
run: npx quartz build
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: built-site
path: public
deploy:
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: built-site
path: public
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4