resume/.gitea/workflows/build-and-deploy.yml
shockrah ac9a1f65e6
Some checks failed
Build and Deploy Resume Site / setup-website-content (push) Failing after 5s
single step scp in action
2024-09-11 21:35:12 -07:00

31 lines
907 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: Setup the hostname with the private key that we have
run: mkdir -p ~/.ssh/ && ssh-keyscan git.shockrah.xyz >> ~/.ssh/known_hosts
- name: SCP Files with marketplace action
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USER }}
port: ${{ secrets.PORT }}
key: ${{ secrets.PRIVATE_KEY }}
source: public/
target: /opt/nginx/test.shockrah.xyz