Skip to content

Commit 4a535c0

Browse files
authored
Update Build-Deploy-auto.yml
1 parent 483f3e4 commit 4a535c0

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/Build-Deploy-auto.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,15 @@ jobs:
6060
TAG_LATEST: ${{ steps.tag_vars.outputs.tag_latest }}
6161
REGISTRY_PATH: ${{ steps.registry_path.outputs.registry_path }}
6262
working-directory: ./dev
63+
# use docker-compose build for 1.29.2
64+
# docker compose build for 2.15.0 (with buildkit enabled by default)
6365
run: |
64-
docker-compose version
66+
docker compose version
6567
sed -i "s|registry=|registry=${REGISTRY_PATH}|g" .env
6668
sed -i "s/latest/${TAG}/g" .env
67-
docker-compose build
69+
docker compose build
6870
sed -i "s/${TAG}/${TAG_LATEST}/g" .env
69-
docker-compose build
71+
docker compose build
7072
docker images
7173
7274
- name: Log in to the Container registry

0 commit comments

Comments
 (0)