resume/.gitea/workflows/build-and-deploy.yml
shockrah bd7914e211
Some checks failed
Build and Deploy Resume Site / setup-website-content (push) Failing after 12s
Version bump to one without shell script issues
2024-09-28 14:47:41 -07:00

28 lines
711 B
YAML

name: Build and Deploy Resume Site
on:
push:
branches:
- master
jobs:
setup-website-content:
env:
remote_path: "/opt/nginx/test.shockrah.xyz"
ssh_target: "html-deployer@shockrah.xyz"
runs-on: ubuntu-latest
container:
image: shockrah/hugo
steps:
- name: Checkout repository resources
uses: actions/checkout@v4
- name: Build website content
run: hugo && ls -R
- name: Copy files with rsync
uses: tempersama/rsync-copy@2.3
with:
host: shockrah.xyz
username: ${{ secrets.USER }}
origin: "public/"
target: /opt/nginx/test.shockrah.xyz
key: ${{ secrets.PRIVATE_KEY }}