blog/.gitea/workflows/build-and-deploy.yaml
2025-08-19 22:24:23 -07:00

28 lines
655 B
YAML

name: Build and Deploy Blog Site
on:
push:
branches:
- master
jobs:
setup-website-content:
runs-on: ubuntu-latest
container:
image: shockrah/hugo
steps:
- run: git init
- run: git remote add origin https://git.shockrah.xyz/shockrah/blog.git
- run: git pull origin master
- name: Build website content
run: hugo
- name: Copy files with rsync
uses: tempersama/rsync-copy@2.6
with:
host: shockrah.xyz
username: ${{ secrets.USER }}
source: "public/"
destination: /opt/nginx/shockrah.xyz/
key: ${{ secrets.PRIVATE_KEY }}