Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

docs: add note about the repo being archived (#1446) #106

docs: add note about the repo being archived (#1446)

docs: add note about the repo being archived (#1446) #106

Workflow file for this run

name: github pages
on:
push:
branches:
- master
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: "0.75.1"
extended: true
- name: Build
run: |
make -C website production-build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./website/public