Skip to content

Update config.toml

Update config.toml #78

Workflow file for this run

name: Hugo Build
on:
push:
branches:
- main
workflow_dispatch:
# We have several possible workflows:
# - Push to master (regular static site generator)
# - Label an issue as "published" by the repo owner
# - Edit an issue which is "published" by the repo owner
jobs:
build:
# To see available associations: https://developer.github.com/v4/enum/commentauthorassociation/
# Be careful that if this is left too open, it could result in arbitrary file
# upload, as the filename is directly derived from the issue title
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
repository: dzervas/notion-markdown
path: notion-markdown
- name: Setup NPM
uses: actions/setup-node@v4
- name: Install dependencies
run: npm ci
- name: Hugo setup
uses: peaceiris/actions-hugo@v3
with:
extended: true
- name: Download notion pages
run: notion-markdown/getter.py -c content/post -d static/img -u /img ${{ secrets.NOTIONDB_ID }}
- name: Build site
run: hugo --minify --gc
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
force_orphan: true
cname: whynot.fail