Fix issues with Docker workflow.
Austin S. Hemmelgarn committed
Mar 6, 2024 at 10:36 UTC
2a4c3af77d84ce2ead56ee690c3fc3a1cd367a43
1 file changed
+4
-5
.github/workflows/docker.yml
+4
-5
@@ -59,7 +59,6 @@ jobs:
59
.github/workflows/docker.yml
60
.github/scripts/docker-test.sh
61
.github/scripts/gen-docker-tags.py
62
- .github/scripts/gen-docker-build-info.py
62
.github/scripts/gen-docker-imagetool-args.py
63
packaging/cmake/
64
packaging/docker/
@@ -259,7 +258,7 @@ jobs:
258
platforms: ${{ matrix.platform }}
259
cache-from: type=local,src=/tmp/build-cache
260
build-args: OFFICIAL_IMAGE=${{ env.OFFICIAL_IMAGE }}
262
- outputs: type=image,name=netdata/netdata,push-by-digest=true,name-canonical=true,push=true
261
+ outputs: type=image,name=netdata/netdata-ci-test,push-by-digest=true,name-canonical=true,push=true
262
- name: Export Digest
263
id: export-digest
264
if: github.repository == 'netdata/netdata'
@@ -331,7 +330,7 @@ jobs:
330
- name: Create and Push Manifest
331
id: manifest
332
if: github.repository == 'netdata/netdata'
334
- run: docker buildx imagetool create $(.github/scripts/gen-docker-imagetool-args.py /tmp/digests '' ${{ needs.gen-tags.outputs.tags }})
333
+ run: docker buildx imagetools create $(.github/scripts/gen-docker-imagetool-args.py /tmp/digests '' ${{ needs.gen-tags.outputs.tags }})
334
- name: Failure Notification
335
uses: rtCamp/action-slack-notify@v2
336
env:
@@ -410,7 +409,7 @@ jobs:
409
platforms: ${{ matrix.platform }}
410
cache-from: type=local,src=/tmp/build-cache
411
build-args: OFFICIAL_IMAGE=${{ env.OFFICIAL_IMAGE }}
413
- outputs: type=image,name=netdata/netdata,push-by-digest=true,name-canonical=true,push=true
412
+ outputs: type=image,name=quay.io/netdata/netdata-ci-test,push-by-digest=true,name-canonical=true,push=true
413
- name: Export Digest
414
id: export-digest
415
if: github.repository == 'netdata/netdata'
@@ -483,7 +482,7 @@ jobs:
482
- name: Create and Push Manifest
483
id: manifest
484
if: github.repository == 'netdata/netdata'
486
- run: docker buildx imagetool create $(.github/scripts/gen-docker-imagetool-args.py /tmp/digests '' ${{ needs.gen-tags.outputs.tags }})
485
+ run: docker buildx imagetools create $(.github/scripts/gen-docker-imagetool-args.py /tmp/digests '' ${{ needs.gen-tags.outputs.tags }})
486
- name: Failure Notification
487
uses: rtCamp/action-slack-notify@v2
488
env: