From 2c67d2b7bfd63e62fe769fb4a4c986d3a12efcda Mon Sep 17 00:00:00 2001 From: evanpelle Date: Wed, 1 Oct 2025 14:51:57 -0700 Subject: [PATCH] fix staging deployment - remove nbg1 (#2128) ## Description: nbg1 host was removed causing the ssh-keyscan to fail which failed the deployment. ## Please complete the following: - [x] I have added screenshots for all UI updates - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - [x] I have added relevant tests to the test directory - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced ## Please put your Discord username so you can be contacted if a bug or regression is found: evan --- .github/workflows/deploy.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4a26134e5..8e4df3623 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,7 +20,6 @@ on: type: choice options: - masters - - nbg1 - staging - falk1 target_subdomain: @@ -93,7 +92,6 @@ jobs: - name: 🔑 Create SSH private key env: SERVER_HOST_MASTERS: ${{ secrets.SERVER_HOST_MASTERS }} - SERVER_HOST_NBG1: ${{ secrets.SERVER_HOST_NBG1 }} SERVER_HOST_FALK1: ${{ secrets.SERVER_HOST_FALK1 }} SERVER_HOST_STAGING: ${{ secrets.SERVER_HOST_STAGING }} SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} @@ -102,7 +100,6 @@ jobs: mkdir -p ~/.ssh echo "${SSH_PRIVATE_KEY}" > ~/.ssh/id_rsa test -n "$SERVER_HOST_MASTERS" && ssh-keyscan -H "$SERVER_HOST_MASTERS" >> ~/.ssh/known_hosts - test -n "$SERVER_HOST_NBG1" && ssh-keyscan -H "$SERVER_HOST_NBG1" >> ~/.ssh/known_hosts test -n "$SERVER_HOST_FALK1" && ssh-keyscan -H "$SERVER_HOST_FALK1" >> ~/.ssh/known_hosts test -n "$SERVER_HOST_STAGING" && ssh-keyscan -H "$SERVER_HOST_STAGING" >> ~/.ssh/known_hosts chmod 600 ~/.ssh/id_rsa @@ -125,7 +122,6 @@ jobs: R2_SECRET_KEY: ${{ secrets.R2_SECRET_KEY }} API_KEY: ${{ secrets.API_KEY }} SERVER_HOST_MASTERS: ${{ secrets.SERVER_HOST_MASTERS }} - SERVER_HOST_NBG1: ${{ secrets.SERVER_HOST_NBG1 }} SERVER_HOST_FALK1: ${{ secrets.SERVER_HOST_FALK1 }} SERVER_HOST_STAGING: ${{ secrets.SERVER_HOST_STAGING }} SSH_KEY: ~/.ssh/id_rsa