New post :D

This commit is contained in:
2025-08-19 22:24:23 -07:00
parent ca66e70b4a
commit 8b2c0f301e
2 changed files with 68 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
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 }}