Skip to content

Commit 02463fc

Browse files
committed
chore(deployment): update docker image tagging
1 parent 3e33472 commit 02463fc

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/cd.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ jobs:
2222
working-directory: ./resources/deployment
2323
run: |
2424
docker compose -f compose.production.yml build
25-
docker tag shapez-base shapez-base:${{ github.ref_name }}
26-
docker tag shapez-proxy shapez-proxy:${{ github.ref_name }}
25+
docker tag shapez-base ${{ github.repository_owner }}/shapez-base:latest
26+
docker tag shapez-base ${{ github.repository_owner }}/shapez-base:${{ github.ref_name }}
27+
docker tag shapez-proxy ${{ github.repository_owner }}/shapez-proxy:latest
28+
docker tag shapez-proxy ${{ github.repository_owner }}/shapez-proxy:${{ github.ref_name }}
2729
- name: Update env
2830
run: |
2931
echo "REGISTRY_DIR=${GITHUB_REPOSITORY_OWNER@L}" >> "${GITHUB_ENV}"

resources/deployment/caddy-services.compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
caddy:
33
container_name: shapez-proxy
4-
image: dontmash/shapez-proxy
4+
image: shapez-proxy
55
build:
66
dockerfile: caddy.dockerfile
77
restart: unless-stopped

resources/deployment/pocketbase-services.compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
pocketbase:
33
container_name: shapez-base
4-
image: dontmash/shapez-base
4+
image: shapez-base
55
build:
66
dockerfile: pocketbase.dockerfile
77
restart: unless-stopped

0 commit comments

Comments
 (0)