website/.forgejo/workflows/build.yaml

61 lines
1.8 KiB
YAML
Raw Normal View History

name: build-to-pages
on: [push]
branches: [main]
jobs:
build:
runs-on: docker
2023-12-23 23:14:25 +00:00
container:
image: node:latest
env:
HUGO_VERSION: 0.115.4
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 \
&& dpkg -i ${{ runner.temp }}/hugo.deb
- name: Install Dart Sass
run: npm i -g sass
- uses: actions/checkout@v4
with:
submodules: recursive
2023-10-28 20:01:27 +00:00
- name: Build with hugo
env:
# For maximum backward compatibility with Hugo modules
HUGO_ENVIRONMENT: production
HUGO_ENV: production
run: hugo --minify
2024-01-15 21:57:23 +00:00
- name: Optimize images
shell: bash
run: |
./themes/kobel/assets/build/images.sh
2023-10-28 19:32:32 +00:00
- name: Zip output
run: apt update && apt install zip -y && zip -r public.zip public/
- uses: actions/upload-artifact@v3
with:
name: hugo-output
2023-10-28 19:32:32 +00:00
path: ./public.zip
if-no-files-found: error
2023-10-28 19:36:38 +00:00
retention-days: 1
push:
runs-on: docker
2023-12-23 23:15:42 +00:00
container:
image: node:latest
steps:
- uses: actions/checkout@v4
with:
ref: public
2023-10-28 20:01:27 +00:00
- name: Clean current files in directory
2023-10-28 20:04:13 +00:00
run: rm -rf *
- uses: actions/download-artifact@v3
with:
name: hugo-output
2023-10-28 20:01:27 +00:00
- name: Unzip hugo output
2023-12-23 23:24:35 +00:00
shell: bash
2023-12-23 23:20:01 +00:00
run: apt update && apt install unzip -y && unzip public.zip -d . && shopt -s dotglob && mv ./public/* ./
2023-10-28 20:12:07 +00:00
- name: Publish
run: |
git config user.name "forgejo-actions"
git config user.email ""
git add .
git commit -m "generated"
git push