2025-07-11 23:31:49 -04:00
|
|
|
name: Build and Deploy Hugo
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
2025-07-12 15:57:55 -04:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2025-07-11 23:31:49 -04:00
|
|
|
with:
|
|
|
|
submodules: true # Fetch Hugo themes (true OR recursive)
|
|
|
|
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
|
|
|
|
|
2025-07-12 00:24:10 -04:00
|
|
|
- name: Setup
|
|
|
|
run: apt-get install hugo -y
|
2025-07-11 23:31:49 -04:00
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: hugo --minify
|
|
|
|
|
|
|
|
- name: Deploy
|
|
|
|
run: rsync -azvr public/* root@smokey:/var/www/alexselimov.com/
|