seriously, this is a circle
All checks were successful
Build Hugo Site / build (push) Successful in 23s

This commit is contained in:
John 2025-03-09 10:47:09 -05:00
parent 694efb106c
commit c7d1710979

View File

@ -21,8 +21,13 @@ jobs:
hugo-version: 'latest' hugo-version: 'latest'
extended: true extended: true
- name: Build site - name: Ensure Output Directory is Writable
run: |
mkdir -p /mnt/hugo_output
chmod -R 777 /mnt/hugo_output # Avoid permission issues
- name: Build Hugo Site
run: hugo --minify --destination /mnt/hugo_output run: hugo --minify --destination /mnt/hugo_output
- name: Set correct permissions - name: Verify Output Files
run: chown -R john:gpio /mnt/hugo_output run: ls -lah /mnt/hugo_output