Skip to content

vault backup: 2024-11-01 10:50:38 #62

vault backup: 2024-11-01 10:50:38

vault backup: 2024-11-01 10:50:38 #62

Workflow file for this run

name: Build and Deploy GitHub Pages
on:
- push
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.9.0'
- name: Install and build
run: |
cd .quartz
npm i
npx quartz build -d ../
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: .quartz/public
token: ${{ secrets.GITHUB_TOKEN }}