Skip to content

Commit 79201e4

Browse files
committed
fixes name of containers
organisation must be all lower case 🤦‍♂️
1 parent 0a5166f commit 79201e4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build_container.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,20 +59,20 @@ jobs:
5959
- name: 'Build and push image'
6060
run: |
6161
# build and push to GitHub Container Registry
62-
docker build . -t ghcr.io/The-Strategy-Unit/nhp_model:${{ env.VERSION }} \
62+
docker build . -t ghcr.io/the-strategy-unit/nhp_model:${{ env.VERSION }} \
6363
--build-arg app_version=${{ inputs.app-version }} \
6464
--build-arg data_version=${{ inputs.data-version }} \
6565
--build-arg storage_account=${{ secrets.NHP_STORAGE_ACCOUNT }}
66-
docker push ghcr.io/The-Strategy-Unit/nhp_model:${{ env.VERSION }}
66+
docker push ghcr.io/the-strategy-unit/nhp_model:${{ env.VERSION }}
6767
# push to Azure Container Registry (where the app currently run from)
68-
docker tag ghcr.io/The-Strategy-Unit/nhp_model:${{ env.VERSION }} ${{ secrets.REGISTRY_LOGIN_SERVER }}/nhp_model:${{ env.VERSION }}
68+
docker tag ghcr.io/the-strategy-unit/nhp_model:${{ env.VERSION }} ${{ secrets.REGISTRY_LOGIN_SERVER }}/nhp_model:${{ env.VERSION }}
6969
docker push ${{ secrets.REGISTRY_LOGIN_SERVER }}/nhp_model:${{ env.VERSION }}
7070
7171
- name: 'Push latest'
7272
if: ${{ inputs.latest }}
7373
run: |
74-
docker tag ghcr.io/The-Strategy-Unit/nhp_model:${{ env.VERSION }} ghcr.io/The-Strategy-Unit/nhp_model:latest
75-
docker push ghcr.io/The-Strategy-Unit/nhp_model:latest
74+
docker tag ghcr.io/the-strategy-unit/nhp_model:${{ env.VERSION }} ghcr.io/the-strategy-unit/nhp_model:latest
75+
docker push ghcr.io/the-strategy-unit/nhp_model:latest
7676
77-
docker tag ghcr.io/The-Strategy-Unit/nhp_model:${{ env.VERSION }} ${{ secrets.REGISTRY_LOGIN_SERVER }}/nhp_model:latest
77+
docker tag ghcr.io/the-strategy-unit/nhp_model:${{ env.VERSION }} ${{ secrets.REGISTRY_LOGIN_SERVER }}/nhp_model:latest
7878
docker push ${{ secrets.REGISTRY_LOGIN_SERVER }}/nhp_model:latest

0 commit comments

Comments
 (0)