Test with all environment variables set correctly lol

This commit is contained in:
2025-04-18 13:10:00 -08:00
parent d44c5900f1
commit d938275ea3

View File

@@ -15,11 +15,12 @@ jobs:
- name: Set up SSH key
env:
DEPLOY_KEY: ${{secrets.DEPLOY_KEY}}
REMOTE_HOST: ${{ secrets.REMOTE_HOST}}
run: |
mkdir -p ~/.ssh
echo "$DEPLOY_KEY" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan -H your.remote.server.com >> ~/.ssh/known_hosts
ssh-keyscan -H $REMOTE_HOST >> ~/.ssh/known_hosts
- name: Deploy with Docker Compose
env: