update draft

This commit is contained in:
John Bowdre 2024-01-21 14:53:00 -06:00
parent be8d5dea65
commit 524b912dd8

View file

@ -11,8 +11,10 @@ categories: Backstage
tags: tags:
- hugo - hugo
- meta - meta
- serverless
--- ---
Neocities: https://neocities.org/about
Supporter: https://neocities.org/supporter Supporter: https://neocities.org/supporter
@ -39,7 +41,7 @@ Hugo starter workflow: https://github.com/actions/starter-workflows/blob/main/pa
```yaml ```yaml
# torchlight! {"lineNumbers": true} # torchlight! {"lineNumbers": true}
# .github/workflows/deploy-to-neocities.yml # .github/workflows/deploy-to-neocities.yml
name: Deploy to neocities name: Deploy to Neocities
# only run on changes to main # only run on changes to main
on: on:
@ -57,7 +59,8 @@ defaults:
shell: bash shell: bash
jobs: jobs:
deploy: build:
name: Build Hugo site
runs-on: ubuntu-latest runs-on: ubuntu-latest
env: env:
HUGO_VERSION: "0.121.1" HUGO_VERSION: "0.121.1"
@ -81,12 +84,54 @@ jobs:
HUGO_ENV: production HUGO_ENV: production
run: | run: |
hugo \ hugo \
--minify \ --minify
--baseURL "https://runtimeterror.dev/" - name: Insert 404 page
run: |
cp public/not_found/index.html public/not_found.html
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: build
path: public
retention-days: 1
highlight:
name: Highlight code with Torchlight
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Node.js dependencies
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: build
path: public
- name: Highlight with Torchlight - name: Highlight with Torchlight
run: | run: |
npm i @torchlight-api/torchlight-cli npm i @torchlight-api/torchlight-cli
npx torchlight npx torchlight
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: highlight
path: public
retention-days: 1
deploy:
name: Publish to Neocities
runs-on: ubuntu-latest
needs: highlight
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: highlight
path: public
- name: Deploy to neocities - name: Deploy to neocities
uses: bcomnes/deploy-to-neocities@v1 uses: bcomnes/deploy-to-neocities@v1
with: with: