mirror of
https://github.com/jbowdre/runtimeterror.git
synced 2024-11-12 19:12:18 +00:00
collapse workflow to single job
This commit is contained in:
parent
298f44fad1
commit
c3a8722369
1 changed files with 2 additions and 40 deletions
42
.github/workflows/deploy-to-neocities.yml
vendored
42
.github/workflows/deploy-to-neocities.yml
vendored
|
@ -16,8 +16,8 @@ defaults:
|
|||
shell: bash
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build Hugo site
|
||||
deploy:
|
||||
name: Build and deploy Hugo site
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Hugo setup
|
||||
|
@ -34,48 +34,10 @@ jobs:
|
|||
- 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: Download artifact
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: build
|
||||
path: public
|
||||
- name: Highlight with Torchlight
|
||||
run: |
|
||||
npm i @torchlight-api/torchlight-cli
|
||||
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
|
||||
uses: bcomnes/deploy-to-neocities@v1
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue