From d938275ea30097a05669c3bd4ab81916d339f061 Mon Sep 17 00:00:00 2001 From: BeardedTek Date: Fri, 18 Apr 2025 13:10:00 -0800 Subject: [PATCH] Test with all environment variables set correctly lol --- .github/workflows/deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a44d323..da0757f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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: