AlexSelimov.com/.forgejo/workflows/build_and_deploy_site.yml
Alex Selimov 3517f6ca1b
Some checks failed
Build and Deploy Hugo / deploy (push) Failing after -16m55s
Change to manual checkout
2025-07-12 16:04:40 -04:00

26 lines
564 B
YAML

name: Build and Deploy Hugo
on:
push:
branches:
- master
pull_request:
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- name: Manual checkout
run: |
git clone ${{ github.server_url }}/${{ github.repository }} .
cd ${{ github.repository }}
git checkout ${{ github.sha }}
git submodule init
- name: Setup
run: apt-get install hugo -y
- name: Build
run: hugo --minify
- name: Deploy
run: rsync -azvr public/* root@smokey:/var/www/alexselimov.com/