shockrah
2b5edfc177
All checks were successful
Build and Deploy Resume Site / setup-website-content (push) Successful in 8s
28 lines
718 B
YAML
28 lines
718 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 using scp-action
|
|
uses: tempersama/scp-action@1.5
|
|
with:
|
|
host: shockrah.xyz
|
|
username: ${{ secrets.USER }}
|
|
origin: "public/"
|
|
target: /opt/nginx/test.shockrah.xyz/
|
|
key: ${{ secrets.PRIVATE_KEY }}
|