From 5618595b42db411515d87b1d1c107c9055f86e53 Mon Sep 17 00:00:00 2001 From: Daniel Sukoneck Date: Wed, 30 Aug 2023 15:26:17 -0700 Subject: [PATCH 1/2] include arm64 image in release --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8e64c44fa1..61f0f432b2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,7 +52,7 @@ jobs: push: true build-args: | VERSION=${{ env.RELEASE_VERSION }} - platforms: linux/amd64 + platforms: linux/amd64, linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} @@ -71,4 +71,4 @@ jobs: tag_name: ${{ github.ref }} release_name: ${{ github.ref }} draft: true - prerelease: false \ No newline at end of file + prerelease: false From f9475c57030ffeff6c362127ae806c11e9bbb1ff Mon Sep 17 00:00:00 2001 From: Daniel Sukoneck Date: Wed, 30 Aug 2023 15:46:42 -0700 Subject: [PATCH 2/2] remove contains(hyphen) condition from latest tag --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 61f0f432b2..3d056e59cc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,7 @@ jobs: type=sha type=pep440,pattern={{version}} type=pep440,pattern={{major}}.{{minor}} - type=raw,value=latest,enable=${{ !contains(env.RELEASE_VERSION, '-') }} + type=raw,value=latest - name: Login to DockerHub uses: docker/login-action@v2 @@ -52,7 +52,7 @@ jobs: push: true build-args: | VERSION=${{ env.RELEASE_VERSION }} - platforms: linux/amd64, linux/arm64 + platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}