mirror of
https://github.com/jbowdre/runtimeterror.git
synced 2024-11-12 19:12:18 +00:00
split workflow into multiple jobs
This commit is contained in:
parent
d1c38bf0ad
commit
cc3d735500
1 changed files with 36 additions and 1 deletions
37
.github/workflows/deploy-to-neocities.yml
vendored
37
.github/workflows/deploy-to-neocities.yml
vendored
|
@ -16,7 +16,8 @@ defaults:
|
|||
shell: bash
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
build:
|
||||
name: Build Hugo site
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
HUGO_VERSION: "0.121.1"
|
||||
|
@ -44,10 +45,44 @@ 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: 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
|
||||
- name: Highlight with Torchlight
|
||||
run: |
|
||||
npm i @torchlight-api/torchlight-cli
|
||||
npx torchlight
|
||||
- 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
|
||||
- name: Deploy to neocities
|
||||
uses: bcomnes/deploy-to-neocities@v1
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue