resume/.gitea/workflows/build-and-deploy.yml
shockrah 080d0c4f7c
All checks were successful
Build and Deploy Resume Site / setup-website-content (push) Successful in 7s
using webfactory/ssh-agent
2024-09-11 21:27:56 -07:00

26 lines
761 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: Setup the hostname with the private key that we have
run: mkdir -p ~/.ssh/ && ssh-keyscan git.shockrah.xyz >> ~/.ssh/known_hosts
- name: Setup SSH to copy files up to remote webserver
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.PRIVATE_KEY }}