resume/.gitea/workflows/build-and-deploy.yml

28 lines
718 B
YAML
Raw Normal View History

name: Build and Deploy Resume Site
on:
push:
branches:
- master
jobs:
setup-website-content:
2024-09-04 01:32:22 +00:00
env:
remote_path: "/opt/nginx/test.shockrah.xyz"
2024-09-12 04:30:19 +00:00
ssh_target: "html-deployer@shockrah.xyz"
runs-on: ubuntu-latest
2024-09-03 22:36:49 +00:00
container:
image: shockrah/hugo
steps:
- name: Checkout repository resources
uses: actions/checkout@v4
- name: Build website content
2024-09-27 02:59:28 +00:00
run: hugo && ls -R
2024-09-26 03:21:22 +00:00
- name: Copy files using scp-action
2024-09-27 04:08:15 +00:00
uses: tempersama/scp-action@1.5
2024-09-26 03:21:22 +00:00
with:
host: shockrah.xyz
username: ${{ secrets.USER }}
2024-09-27 03:05:24 +00:00
origin: "public/"
2024-09-27 04:16:52 +00:00
target: /opt/nginx/test.shockrah.xyz/
2024-09-26 03:21:22 +00:00
key: ${{ secrets.PRIVATE_KEY }}