resume/.gitea/workflows/build-and-deploy.yml

26 lines
761 B
YAML
Raw Normal View History

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"
ssh_target: "${{ secrets.USER }}@${{ secrets.HOST }}"
runs-on: ubuntu-latest
2024-09-03 22:36:49 +00:00
container:
image: shockrah/hugo
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-06 04:28:34 +00:00
- name: Setup the hostname with the private key that we have
run: mkdir -p ~/.ssh/ && ssh-keyscan git.shockrah.xyz >> ~/.ssh/known_hosts
2024-09-06 04:17:48 +00:00
- name: Setup SSH to copy files up to remote webserver
uses: webfactory/ssh-agent@v0.9.0
2024-09-06 04:19:08 +00:00
with:
ssh-private-key: ${{ secrets.PRIVATE_KEY }}