Skip to content

Commit

Permalink
Fix env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
markbotterill committed Apr 11, 2024
1 parent cfed642 commit 71e9e25
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/redeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ jobs:
StrictHostKeyChecking no
END
env:
PROD_EC2_USER: ${{ secrets.STAGING_SSH_USER }}
PROD_SSH_KEY: ${{ secrets.STAGING_SSH_KEY }}
PROD_EC2_HOST_IP: ${{ secrets.STAGING_SSH_HOST }}
PROD_EC2_USER: ${{ secrets.PROD_EC2_USER }}
PROD_SSH_KEY: ${{ secrets.PROD_SSH_KEY }}
PROD_EC2_HOST_IP: ${{ secrets.PROD_EC2_HOST_IP }}

- name: Deploy to Production
run: |
ssh prod << 'EOF'
Expand Down

0 comments on commit 71e9e25

Please sign in to comment.