resume/.gitea/workflows/build-and-deploy.yml
shockrah e15a37a8f3
Some checks failed
Build and Deploy Resume Site / setup-website-content (push) Failing after 7s
Testing anothe rmethod of pushing files to remote
2024-09-05 21:06:06 -07:00

27 lines
733 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: "${{ secrets.USER }}@${{ secrets.HOST }}"
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 copying
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