Skip to content

Commit 7ef96cd

Browse files
committed
chore(deployment): add registry host to docker image tag
1 parent 64ac91d commit 7ef96cd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
working-directory: ./resources/deployment
2626
run: |
2727
docker compose -f compose.production.yml build
28-
docker tag shapez-base ${{ env.REGISTRY_DIR }}/shapez-base:latest
29-
docker tag shapez-base ${{ env.REGISTRY_DIR }}/shapez-base:${{ github.ref_name }}
30-
docker tag shapez-proxy ${{ env.REGISTRY_DIR }}/shapez-proxy:latest
31-
docker tag shapez-proxy ${{ env.REGISTRY_DIR }}/shapez-proxy:${{ github.ref_name }}
28+
docker tag shapez-base ghcr.io/${{ env.REGISTRY_DIR }}/shapez-base:latest
29+
docker tag shapez-base ghcr.io/${{ env.REGISTRY_DIR }}/shapez-base:${{ github.ref_name }}
30+
docker tag shapez-proxy ghcr.io/${{ env.REGISTRY_DIR }}/shapez-proxy:latest
31+
docker tag shapez-proxy ghcr.io/${{ env.REGISTRY_DIR }}/shapez-proxy:${{ github.ref_name }}
3232
- name: Push
3333
run: |
3434
docker image ls

0 commit comments

Comments
 (0)