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
12 changes: 9 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,11 @@ jobs:
docker compose -f docker-compose.build.yml --env-file tdei_uw.env push
env:
ENV: ${{ vars.ENV }}
WS_DOCKER_REGISTRY: ${{ vars.WS_DOCKER_REGISTRY }}
CODE_VERSION: ${{ github.sha }}

# hosts
WS_DOCKER_REGISTRY: ${{ vars.WS_DOCKER_REGISTRY }}
WS_POSM_DB_HOST: ${{ vars.WS_POSM_DB_HOST }}

# passwords
WS_API_DB_PASS: ${{ secrets.WS_API_DB_PASS }}
Expand All @@ -70,15 +73,18 @@ jobs:
- name: Deploy
env:
ENV: ${{ vars.ENV }}
WS_DOCKER_REGISTRY: ${{ vars.WS_DOCKER_REGISTRY }}
CODE_VERSION: ${{ github.sha }}

# machine to deploy to
AZURE_DOCKER_HOST_IP: ${{ vars.AZURE_DOCKER_HOST_IP }}

# tag to deploy
WS_DOCKER_TAG: ${{ github.sha }}


# hosts
WS_DOCKER_REGISTRY: ${{ vars.WS_DOCKER_REGISTRY }}
WS_POSM_DB_HOST: ${{ vars.WS_POSM_DB_HOST }}

# passwords
WS_API_DB_PASS: ${{ secrets.WS_API_DB_PASS }}
WS_MAPBOX_ACCESS_TOKEN: ${{ secrets.WS_MAPBOX_ACCESS_TOKEN }}
Expand Down