resume/.gitea/workflows/build-and-deploy.yml
shockrah a603a456c1
All checks were successful
Build and Deploy Resume Site / setup-website-content (push) Successful in 13s
Specify origin folder
2024-09-25 19:24:04 -07:00

29 lines
720 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
- name: Copy using scp-action
uses: srueda99/scp-action@v12
with:
host: shockrah.xyz
port: 22
username: ${{ secrets.USER }}
key: ${{ secrets.PRIVATE_KEY }}
origin: "public/*"
target: /opt/nginx/test.shockrah.xyz