diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index 90bc2372c..e57a7c623 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -68,7 +68,7 @@ jobs: with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - + - name: Wait for images to be available run: | while true; do @@ -83,10 +83,10 @@ jobs: fi sleep 10 done - - name: Deploy to ${{ github.event.inputs.environment }} env: + SSH_USER: ${{ secrets.SSH_USER }} DOMAIN: ${{ vars.DOMAIN }} REPLICAS: ${{ vars.REPLICAS }} SMTP_PORT: ${{ secrets.SMTP_PORT }} diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 65914dcf6..070fe6d28 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -71,7 +71,7 @@ jobs: with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - + - name: Wait for images to be available run: | while true; do @@ -90,6 +90,7 @@ jobs: - name: Deploy to ${{ github.event.inputs.environment }} id: deploy env: + SSH_USER: ${{ secrets.SSH_USER }} DOMAIN: ${{ vars.DOMAIN }} REPLICAS: ${{ vars.REPLICAS }} SMTP_PORT: ${{ secrets.SMTP_PORT }}