## Description:

## Please complete the following:

- [ ] I have added screenshots for all UI updates
- [ ] I confirm I have thoroughly tested these changes and take full
responsibility for any bugs introduced
- [ ] I understand that submitting code with bugs that could have been
caught through manual testing blocks releases and new features for all
contributors

## Please put your Discord username so you can be contacted if a bug or
regression is found:

<DISCORD USERNAME>

Co-authored-by: Scott Anderson <662325+scottanderson@users.noreply.github.com>
This commit is contained in:
Scott Anderson
2025-04-29 17:17:04 -04:00
committed by GitHub
parent 3e5a1eacdb
commit b8fd55077b
+6 -3
View File
@@ -60,13 +60,16 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Create SSH private key
env:
SERVER_HOST_EU: ${{ secrets.SERVER_HOST_EU }}
SERVER_HOST_STAGING: ${{ secrets.SERVER_HOST_STAGING }}
SERVER_HOST_US: ${{ secrets.SERVER_HOST_US }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
run: |
mkdir -p ~/.ssh
echo "${SSH_PRIVATE_KEY}" > ~/.ssh/id_rsa
ssh-keyscan -H $SERVER_HOST_STAGING >> ~/.ssh/known_hosts
ssh-keyscan -H $SERVER_HOST_US >> ~/.ssh/known_hosts
ssh-keyscan -H $SERVER_HOST_EU >> ~/.ssh/known_hosts
ssh-keyscan -H "$SERVER_HOST_STAGING" >> ~/.ssh/known_hosts
ssh-keyscan -H "$SERVER_HOST_US" >> ~/.ssh/known_hosts
ssh-keyscan -H "$SERVER_HOST_EU" >> ~/.ssh/known_hosts
chmod 600 ~/.ssh/id_rsa
- name: Deploy
env: