Skip to content

Commit 2c20930

Browse files
committed
feat: update Docker workflow to improve build and push process with new environment variables
1 parent 1957f6e commit 2c20930

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/push-docker-v2-dev.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,13 @@ jobs:
4343
-
4444
name: Build and push multi-arch image
4545
env:
46-
TAG: ${{ github.event.inputs.tag || github.ref_name }}-dev
47-
IMAGE_TAG: ${{ github.event.inputs.tag || github.ref_name }}-dev
46+
ARCH: amd64
47+
ENABLE_PROXY: "false"
48+
BASE_IMAGE_TAG: "debug"
49+
TAG: ${{ github.event.inputs.tag || github.ref_name }}dev
50+
IMAGE_TAG: ${{ github.event.inputs.tag || github.ref_name }}dev
4851
ADC_VERSION: ${{ github.event.inputs.adc_version }}
4952
run: |
50-
echo "building multi-arch images with tag: $TAG"
51-
make build-push-multi-arch-image
53+
echo "building images..."
54+
make docker-build
55+
make docker-push

0 commit comments

Comments
 (0)