Skip to content

fix CNAME

fix CNAME #6

Workflow file for this run

name: Deploy (stable)
on:
push:
branches: [stable]
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- name: 🛎️ Checkout
uses: actions/checkout@v3
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: 🚚 Install dependencies
run: npm ci
- name: 📦 Build website
run: npm run build -- -v
- name: 🚀 Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.WEBSITE_PUBLISH_TOKEN }}
branch: gh-pages
folder: public