Testing anothe rmethod of pushing files to remote
Some checks failed
Build and Deploy Resume Site / setup-website-content (push) Failing after 7s

This commit is contained in:
shockrah 2024-09-05 21:06:06 -07:00
parent 0d9536be0f
commit e15a37a8f3

View File

@ -17,13 +17,10 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Build website content - name: Build website content
run: hugo run: hugo
- name: Setup ssh agent - name: SSH setup and copying
run: eval $(ssh-agent -s) run: |
- name: Add private key to agent eval $(ssh-agent -s) \
run: echo "${{ secrets.PRIVATE_KEY }}" | ssh-add - > /dev/null echo "${{ secrets.PRIVATE_KEY }}" | ssh-add - > /dev/null \
- name: Create tmp .ssh directory mkdir -p ~/.ssh \
run: mkdir -p ~/.ssh chmod 0700 ~/.ssh \
- name: Ensure perms on tmp .ssh directory scp -o UserKnownHostsFile=/dev/null -r public/ $ssh_target:$remote_path
run: chmod 0700 ~/.ssh
- name: SCP Files to resume web server
run: "scp -o UserKnownHostsFile=/dev/null -r public/ $ssh_target:$remote_path"