From db8eceba344c943b6272244522795f2dec2ab5d5 Mon Sep 17 00:00:00 2001 From: Matt Dawson Date: Wed, 14 Feb 2024 15:22:46 -0800 Subject: [PATCH 1/6] testing action --- .github/workflows/publish-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index e8bede8d..732d8c1c 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -2,7 +2,7 @@ name: Create and publish a Docker image on: push: - branches: ['release'] + branches: ['develop-update-image-action'] tags: - '*' From 93ff429a1345e2f63af222c581ed32255a238c27 Mon Sep 17 00:00:00 2001 From: Matt Dawson Date: Wed, 14 Feb 2024 15:31:41 -0800 Subject: [PATCH 2/6] retesting image action --- .github/workflows/publish-package.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 732d8c1c..040a5e34 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -23,6 +23,12 @@ jobs: with: submodules: recursive + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Log in to the Container repository uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 with: @@ -42,5 +48,5 @@ jobs: context: . platforms: linux/amd64,linux/arm64,linux/arm push: true - tags: ${{ steps.meta.outputs.tags }} + tags: ${{ steps.meta.outputs.tags }}, ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file From 9502e4d6858c47b276199b62cae02cc5e6ab844b Mon Sep 17 00:00:00 2001 From: Matt Dawson Date: Wed, 14 Feb 2024 15:34:00 -0800 Subject: [PATCH 3/6] retesting image action --- .github/workflows/publish-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 040a5e34..311cb1c2 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -48,5 +48,5 @@ jobs: context: . platforms: linux/amd64,linux/arm64,linux/arm push: true - tags: ${{ steps.meta.outputs.tags }}, ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest + tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file From 0ba4cf089a75995b5d3a467a313ba8b07e971407 Mon Sep 17 00:00:00 2001 From: Matt Dawson Date: Wed, 14 Feb 2024 15:51:01 -0800 Subject: [PATCH 4/6] update image architectures --- .github/workflows/publish-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 311cb1c2..221aa54b 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -46,7 +46,7 @@ jobs: uses: docker/build-push-action@v5 with: context: . - platforms: linux/amd64,linux/arm64,linux/arm + platforms: linux/amd64,linux/arm64v8 push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file From 7cd8050ed7269a9a8be98c6d40e7668cea0cd9d3 Mon Sep 17 00:00:00 2001 From: Matt Dawson Date: Wed, 14 Feb 2024 15:55:14 -0800 Subject: [PATCH 5/6] update image arch --- .github/workflows/publish-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 221aa54b..e2eb5ea7 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -46,7 +46,7 @@ jobs: uses: docker/build-push-action@v5 with: context: . - platforms: linux/amd64,linux/arm64v8 + platforms: linux/amd64,linux/arm64 push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file From 044bb12cf73baaac87ffcfac4bd2f55e291bd173 Mon Sep 17 00:00:00 2001 From: Matt Dawson Date: Wed, 14 Feb 2024 16:35:34 -0800 Subject: [PATCH 6/6] set image action to run on release push --- .github/workflows/publish-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index e2eb5ea7..be6458ee 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -2,7 +2,7 @@ name: Create and publish a Docker image on: push: - branches: ['develop-update-image-action'] + branches: ['release'] tags: - '*'