2024-08-28 02:19:31 +00:00
|
|
|
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"
|
2024-08-28 02:19:31 +00:00
|
|
|
runs-on: ubuntu-latest
|
2024-09-03 22:36:49 +00:00
|
|
|
container:
|
|
|
|
image: shockrah/hugo
|
2024-08-28 02:19:31 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout repository resources
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build website content
|
2024-09-03 23:12:56 +00:00
|
|
|
run: hugo
|
2024-09-26 03:21:22 +00:00
|
|
|
- name: Copy files using scp-action
|
|
|
|
uses: appleboy/scp-action@v0.1.3
|
|
|
|
with:
|
|
|
|
host: shockrah.xyz
|
|
|
|
username: ${{ secrets.USER }}
|
|
|
|
source: "public/*"
|
|
|
|
target: /opt/nginx/test.shockrah.xyz
|
|
|
|
key: ${{ secrets.PRIVATE_KEY }}
|
2024-09-12 05:03:33 +00:00
|
|
|
- name: Copy using scp-action
|
2024-09-12 05:14:27 +00:00
|
|
|
uses: srueda99/scp-action@v12
|
2024-09-12 05:03:33 +00:00
|
|
|
with:
|
|
|
|
host: shockrah.xyz
|
2024-09-12 05:14:27 +00:00
|
|
|
port: 22
|
|
|
|
username: ${{ secrets.USER }}
|
2024-09-12 05:03:33 +00:00
|
|
|
key: ${{ secrets.PRIVATE_KEY }}
|
2024-09-26 02:24:04 +00:00
|
|
|
origin: "public/*"
|
2024-09-12 05:03:33 +00:00
|
|
|
target: /opt/nginx/test.shockrah.xyz
|