We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1957f6e commit 2c20930Copy full SHA for 2c20930
.github/workflows/push-docker-v2-dev.yaml
@@ -43,9 +43,13 @@ jobs:
43
-
44
name: Build and push multi-arch image
45
env:
46
- TAG: ${{ github.event.inputs.tag || github.ref_name }}-dev
47
- IMAGE_TAG: ${{ github.event.inputs.tag || github.ref_name }}-dev
+ ARCH: amd64
+ 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
51
ADC_VERSION: ${{ github.event.inputs.adc_version }}
52
run: |
- echo "building multi-arch images with tag: $TAG"
- make build-push-multi-arch-image
53
+ echo "building images..."
54
+ make docker-build
55
+ make docker-push
0 commit comments