Trying out the apple boy gh action
Some checks failed
Build and Deploy Resume Site / setup-website-content (push) Failing after 9s

This commit is contained in:
shockrah 2024-09-03 16:42:18 -07:00
parent 392d2e7dc9
commit ce1e713949

View File

@ -16,5 +16,13 @@ jobs:
run: hugo run: hugo
- name: Check file content is present - name: Check file content is present
run: pwd && ls -lRt public/ run: pwd && ls -lRt public/
- name: Check if scp is available - name: SCP Files in public up to the remote ( prolly us ) server
run: scp --version uses: appleboy/scp-action@master
env:
HOST: ${{ secrets.host }}
USERNAME: ${{ secrets.user }}
PORT: ${{ secrets.port }}
KEY: ${{ secrets.private_key }}
with:
source: "public"
target: "/opt/nginx/test.shockrah.xyz"