Updated yaml syntax.
Some checks failed
Deploy Frontend / deploy (push) Has been cancelled

This commit is contained in:
Bailey Taylor
2025-09-23 08:19:05 +00:00
parent 3eac3538d6
commit 4e67d910f7

View File

@@ -9,6 +9,10 @@ jobs:
deploy:
runs-on: [frontend] # ✅ matches your psgbuild02 runner
env:
SSH_HOST: ${{ secrets.SSH_HOST }}
SSH_USER: ${{ secrets.SSH_USER }}
steps:
- name: Checkout
uses: actions/checkout@v4
@@ -23,5 +27,6 @@ jobs:
fi
- name: Deploy via script
run: |
ssh ${SSH_USER}@${SSH_HOST} "bash /home/sonder/deploy.sh ${{ steps.envmap.outputs.ENV }}"
run: |
ssh -o StrictHostKeyChecking=no ${SSH_USER}@${SSH_HOST} \
"bash /home/sonder/deploy.sh ${{ steps.envmap.outputs.ENV }}"