Compare commits

...

19 commits

Author SHA1 Message Date
3bf2fd4642 prune orphans 2024-01-21 15:31:14 -06:00
368413597e collapse workflow to single job 2024-01-21 15:29:49 -06:00
fbd7f70939 remove unneeded node dependencies steps 2024-01-21 15:27:40 -06:00
50d43c19b9 remove unneeded hugo vars 2024-01-21 15:14:51 -06:00
577279df27 collapse hugo command line 2024-01-21 15:12:41 -06:00
bd00a037a3 use setup-hugo action 2024-01-21 14:58:23 -06:00
80316ec72f don't install dart 2024-01-21 14:54:01 -06:00
6dcc6ba697 use unique artifact names 2024-01-21 14:36:57 -06:00
7faca4f360 Revert "use cache for torchlight runs"
This reverts commit 05852d3803.
2024-01-21 14:32:20 -06:00
f3746e4047 perform checkout and node dependencies in highlight job 2024-01-21 14:32:08 -06:00
05852d3803 use cache for torchlight runs 2024-01-21 14:25:58 -06:00
847951b142 don't show comments on local renders 2024-01-21 14:24:47 -06:00
c81969204d hotfix: remove regex that was breaking the highlighter 2024-01-21 14:24:17 -06:00
4c460309a7 split workflow into multiple jobs 2024-01-21 13:23:28 -06:00
a20372f224 update status badge 2024-01-21 13:05:49 -06:00
1b90235577 create not_found.html for neocities 2024-01-21 13:04:43 -06:00
530a5c2433 fix case in workflow title 2024-01-21 13:04:17 -06:00
a3da8809ec remove netlify config 2024-01-21 13:04:00 -06:00
92da8b7593 don't explicitly set baseurl, let it come from hugo configs 2024-01-21 12:52:45 -06:00
7 changed files with 16 additions and 66 deletions

View file

@ -1,4 +1,4 @@
name: Deploy to neocities
name: Deploy to Neocities
# only run on changes to main
on:
@ -17,38 +17,30 @@ defaults:
jobs:
deploy:
name: Build and deploy Hugo site
runs-on: ubuntu-latest
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: Hugo setup
uses: peaceiris/actions-hugo@v2.6.0
with:
hugo-version: '0.121.1'
extended: true
- 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
- name: Insert 404 page
run: |
hugo \
--minify \
--baseURL "https://runtimeterror.dev/"
cp public/not_found/index.html public/not_found.html
- name: Highlight with Torchlight
run: |
npm i @torchlight-api/torchlight-cli
npx torchlight
- name: Deploy to neocities
- name: Deploy to Neocities
uses: bcomnes/deploy-to-neocities@v1
with:
api_token: ${{ secrets.NEOCITIES_API_TOKEN }}
cleanup: false
cleanup: true
dist_dir: public

View file

@ -1 +1 @@
[![Netlify Status](https://api.netlify.com/api/v1/badges/7cd6b595-2b3b-403d-a29f-c4f27e8bd366/deploy-status)](https://app.netlify.com/sites/runtimeterrordev/deploys)
[![Neocities Deployment Status](https://github.com/jbowdre/runtimeterror/actions/workflows/deploy-to-neocities.yml/badge.svg)](https://github.com/jbowdre/runtimeterror/actions/workflows/deploy-to-neocities.yml)

View file

@ -1,2 +1,2 @@
comments = true
comments = false
analytics = false

View file

@ -1 +0,0 @@
baseURL = "https://preview--runtimeterrordev.netlify.app"

View file

@ -1,2 +0,0 @@
comments = false
analytics = false

View file

@ -97,6 +97,7 @@ resources:
And I will add in a `storage` property as well which will automatically adjust the deployed VMDK size to match the specified input:
```yaml
# torchlight! {"torchlightAnnotations": false}
# torchlight! {"lineNumbers": true}
[...]
description: '${input.description}'
@ -202,7 +203,6 @@ inputs:
type: string
title: Point of Contact Email
default: jack.shephard@example.com
pattern: '^[^\s@]+@[^\s@]+\.[^\s@]+$'
ticket:
type: string
title: Ticket/Request Number
@ -292,7 +292,7 @@ Once all those constants are created I can move on to the meat of this little pr
#### ABX Action
I'll click back to **Extensibility > Library > Actions** and then **+ New Action**. I give the new action a clever title and description:
![Create a new action](20210901_create_action.png)]
![Create a new action](20210901_create_action.png)
I then hit the language dropdown near the top left and select to use `powershell` so that I can use those sweet, sweet PowerCLI cmdlets.
![Language selection](20210901_action_select_language.png)

View file

@ -1,39 +0,0 @@
[build]
publish = "public"
[build.environment]
HUGO_VERSION = "0.121.1"
[context.production]
command = """
hugo
npm i @torchlight-api/torchlight-cli
npx torchlight
"""
[context.preview]
command = """
hugo --environment preview
npm i @torchlight-api/torchlight-cli
npx torchlight
"""
[[headers]]
for = "/*"
[headers.values]
X-Robots-Tag = "noindex"
[context.drafts]
command = """
hugo --environment drafts -D
npm i @torchlight-api/torchlight-cli
npx torchlight
"""
[[headers]]
for = "/*"
[headers.values]
X-Robots-Tag = "noindex"
[[redirects]]
from = "/*"
to = "/404/"
status = 404