AlexSelimov.com/.forgejo/workflows/build_and_deploy_site.yml

27 lines
564 B
YAML
Raw Normal View History

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 16:04:40 -04:00
- name: Manual checkout
run: |
git clone ${{ github.server_url }}/${{ github.repository }} .
cd ${{ github.repository }}
git checkout ${{ github.sha }}
git submodule init
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/