Bump quartz from 74f8c13
to 1d5b6f5
(#236)
#538
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
name: Deploy to GitHub pages | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: false | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
fetch-depth: 0 # Fetch all history | |
- name: Apply configurations | |
run: | | |
cp quartz.config.ts quartz.layout.ts quartz | |
cp -rf content/* quartz/content/ | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
cache: 'npm' | |
cache-dependency-path: quartz/package-lock.json | |
- name: Install Node.js dependencies | |
working-directory: quartz | |
run: npm ci --omit=dev | |
- name: Build website | |
run: npx quartz build | |
working-directory: quartz | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: quartz/public | |
# Deployment job | |
deploy: | |
needs: build | |
if: ${{ github.ref == 'refs/heads/main'}} | |
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment | |
permissions: | |
pages: write # to deploy to Pages | |
id-token: write # to verify the deployment originates from an appropriate source | |
actions: read # to download an artifact uploaded by `actions/upload-pages-artifact@v3` | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |