runtimeterror/.github/workflows/deploy-to-neocities.yml

91 lines
2.4 KiB
YAML
Raw Normal View History

2024-01-21 19:04:17 +00:00
name: Deploy to Neocities
2024-01-21 03:38:40 +00:00
# only run on changes to main
on:
push:
branches:
- main
concurrency: # prevent concurrent deploys doing strange things
group: deploy-to-neocities
cancel-in-progress: true
# Default to bash
defaults:
run:
shell: bash
jobs:
2024-01-21 19:23:28 +00:00
build:
name: Build Hugo site
runs-on: ubuntu-latest
2024-01-21 03:38:40 +00:00
env:
HUGO_VERSION: "0.121.1"
steps:
- name: Install Hugo CLI
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- name: Install Dart Sass
run: sudo snap install dart-sass
- 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: Build with Hugo
env:
# For maximum backward compatibility with Hugo modules
HUGO_ENVIRONMENT: production
HUGO_ENV: production
run: |
hugo \
--minify
2024-01-21 19:04:43 +00:00
- name: Insert 404 page
run: |
cp public/not_found/index.html public/not_found.html
2024-01-21 19:23:28 +00:00
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: public
path: public
retention-days: 1
highlight:
name: Highlight code with Torchlight
runs-on: ubuntu-latest
needs: build
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: public
path: public
2024-01-21 03:38:40 +00:00
- name: Highlight with Torchlight
run: |
npm i @torchlight-api/torchlight-cli
npx torchlight
2024-01-21 19:23:28 +00:00
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: public
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: public
path: public
2024-01-21 03:38:40 +00:00
- name: Deploy to neocities
uses: bcomnes/deploy-to-neocities@v1
with:
api_token: ${{ secrets.NEOCITIES_API_TOKEN }}
2024-01-21 04:01:44 +00:00
cleanup: false
2024-01-21 03:38:40 +00:00
dist_dir: public