Skip to content

Commit

Permalink
fix workflow using wrong vars
Browse files Browse the repository at this point in the history
  • Loading branch information
BBesrour committed Aug 11, 2024
1 parent 82bb266 commit 30b51ae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ jobs:
host: ${{ vars.URL }}
username: ${{ secrets.SSH_USER }}
key: ${{ secrets.SSH_KEY }}
proxy_host: ${{ secrets.GATEWAY_HOST }}
proxy_username: ${{ secrets.GATEWAY_USER }}
proxy_key: ${{ secrets.GATEWAY_SSH_KEY }}
proxy_port: ${{ secrets.GATEWAY_PORT }}
proxy_host: ${{ vars.DEPLOYMENT_GATEWAY_HOST }}
proxy_username: ${{ vars.DEPLOYMENT_GATEWAY_USER }}
proxy_key: ${{ secrets.DEPLOYMENT_GATEWAY_SSH_KEY }}
proxy_port: ${{ vars.DEPLOYMENT_GATEWAY_PORT }}
script: |
docker-compose -f /opt/artemis-telemetry/docker-compose.yml -f /opt/artemis-telemetry/docker-compose.prod.yml pull
docker-compose -f /opt/artemis-telemetry/docker-compose.yml -f /opt/artemis-telemetry/docker-compose.prod.yml up -d --remove-orphans --force-recreate

0 comments on commit 30b51ae

Please sign in to comment.