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

30 lines
894 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-04 01:32:22 +00:00
- name: Setup ssh agent
2024-09-04 01:34:15 +00:00
run: eval $(ssh-agent -s)
2024-09-04 01:32:22 +00:00
- name: Add private key to agent
2024-09-04 02:13:23 +00:00
run: echo "${{ secrets.PRIVATE_KEY }}" | ssh-add - > /dev/null
2024-09-04 01:32:22 +00:00
- name: Create tmp .ssh directory
run: mkdir -p ~/.ssh
- name: Ensure perms on tmp .ssh directory
run: chmod 0700 ~/.ssh
- name: SCP Files to resume web server
run: "scp -o UserKnownHostsFile=/dev/null -r public/ $ssh_target:$remote_path"