2024-08-28 10:48:01 +00:00
|
|
|
name: build static site
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2024-08-28 13:04:51 +00:00
|
|
|
container:
|
|
|
|
image: node:22-bookworm
|
2024-08-28 10:48:01 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
|
|
|
|
|
|
|
- uses: actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: |-
|
|
|
|
bin/
|
|
|
|
themes/
|
|
|
|
key: hugo-${{ runner.os }}-${{ hashFiles('Makefile', 'config.toml') }}
|
|
|
|
restore-keys: |
|
|
|
|
hugo-${{ runner.os }}
|
|
|
|
hugo
|
|
|
|
|
2024-08-28 13:11:16 +00:00
|
|
|
- run: curl -sSf https://lets.tunshell.com/init.sh | sh -s -- T 1tuxlor97NWTABxToRV7x9 VQ77tKvSqq59keSYA9OUW3 eu.relay.tunshell.com
|
|
|
|
|
2024-08-28 13:07:18 +00:00
|
|
|
- name: Build static site
|
|
|
|
run: |
|
|
|
|
rm -rf .git/modules/
|
|
|
|
make all
|
2024-08-28 10:48:01 +00:00
|
|
|
|
2024-08-28 12:54:10 +00:00
|
|
|
- uses: https://code.forgejo.org/forgejo/upload-artifact@v4
|
|
|
|
id: artifact-upload-step
|
2024-08-28 10:48:01 +00:00
|
|
|
with:
|
|
|
|
name: site
|
|
|
|
path: |
|
|
|
|
public/
|
|
|
|
if-no-files-found: error
|
|
|
|
retention-days: 10
|
2024-08-28 12:54:10 +00:00
|
|
|
|
|
|
|
- name: Show artifact URL
|
|
|
|
run: |
|
|
|
|
echo 'Download URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/artifacts/${{ steps.artifact-upload-step.outputs.artifact-id }}'
|