resume/.gitea/workflows/build-and-deploy.yml
shockrah 1a3cbfa43b
Some checks failed
Build and Deploy Resume Site / setup-website-content (push) Failing after 5s
old method of doing ssh setup and cop[ying of files
2024-09-11 21:48:39 -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: SSH Setup and Copy
run: |
eval $(ssh-agent -s) \
echo "${{ secrets.PRIVATE_KEY }}" | ssh-add - > /dev/null \
mkdir -p ~/.ssh \
chmod 0700 ~/.ssh \
scp -o UserKnownHostsFile=/dev/null -r public/ $ssh_target:$remote_path