Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
- name: Setup SSH known_hosts
run: |
mkdir -p ~/.ssh
ssh-keyscan -H ${{ secrets.BASTION_IP }} >> ~/.ssh/known_hosts
ssh-keyscan -H ${{ secrets.PROD_IP }} >> ~/.ssh/known_hosts
ssh-keyscan -H ${{ secrets.BASTION_IP }} >> ~/.ssh/known_hosts || true
ssh-keyscan -H ${{ secrets.PROD_IP }} >> ~/.ssh/known_hosts || true

- name: Transfer JAR to EC2 via Bastion
run: |
Expand Down
Loading