Skip to content

Commit fefb15f

Browse files
authored
Merge pull request #18 from TaskarCenterAtUW/main
Forgot to pass the GH vars to env vars
2 parents 69cc2f5 + 194cfa7 commit fefb15f

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/build.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,11 @@ jobs:
5555
docker compose -f docker-compose.build.yml --env-file tdei_uw.env push
5656
env:
5757
ENV: ${{ vars.ENV }}
58-
WS_DOCKER_REGISTRY: ${{ vars.WS_DOCKER_REGISTRY }}
5958
CODE_VERSION: ${{ github.sha }}
59+
60+
# hosts
61+
WS_DOCKER_REGISTRY: ${{ vars.WS_DOCKER_REGISTRY }}
62+
WS_POSM_DB_HOST: ${{ vars.WS_POSM_DB_HOST }}
6063

6164
# passwords
6265
WS_API_DB_PASS: ${{ secrets.WS_API_DB_PASS }}
@@ -70,15 +73,18 @@ jobs:
7073
- name: Deploy
7174
env:
7275
ENV: ${{ vars.ENV }}
73-
WS_DOCKER_REGISTRY: ${{ vars.WS_DOCKER_REGISTRY }}
7476
CODE_VERSION: ${{ github.sha }}
7577

7678
# machine to deploy to
7779
AZURE_DOCKER_HOST_IP: ${{ vars.AZURE_DOCKER_HOST_IP }}
7880

7981
# tag to deploy
8082
WS_DOCKER_TAG: ${{ github.sha }}
81-
83+
84+
# hosts
85+
WS_DOCKER_REGISTRY: ${{ vars.WS_DOCKER_REGISTRY }}
86+
WS_POSM_DB_HOST: ${{ vars.WS_POSM_DB_HOST }}
87+
8288
# passwords
8389
WS_API_DB_PASS: ${{ secrets.WS_API_DB_PASS }}
8490
WS_MAPBOX_ACCESS_TOKEN: ${{ secrets.WS_MAPBOX_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)