update path on noprobe
Deploy Website / build (push) Failing after 16s Details

This commit is contained in:
James Ravenscroft 2024-09-08 11:46:09 +01:00
parent 2eb6f53fca
commit 08a18b1200
1 changed files with 1 additions and 2 deletions

View File

@ -19,7 +19,6 @@ jobs:
# run: pip install --index-url https://git.jamesravey.me/api/packages/ravenscroftj/pypi/simple/ bstools
- name: Deploy Site
run: |
apt install -y openssh-client
mkdir -p ~/.ssh/
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
@ -27,7 +26,7 @@ jobs:
ssh \
-i ~/.ssh/id_rsa \
-t james@noprobe.rvns.xyz \
"cd /data/applications/brainsteam.co.uk; git pull; cd brainsteam; ./build.sh"
"cd /home/james/brainsteam.co.uk; git pull; cd brainsteam; ./build.sh"
shell: bash
env:
SSH_PRIVATE_KEY: ${{secrets.SSH_KEY}}