From 3506207dc695bdf899f71a607881ff260797d026 Mon Sep 17 00:00:00 2001 From: Chris Dzombak Date: Fri, 24 May 2024 16:40:49 -0400 Subject: [PATCH] fix docker/metadata-action tagging in GHA --- .github/workflows/ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ff9175..cc874b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -140,11 +140,11 @@ jobs: images: | ${{ needs.meta.outputs.dockerhub_owner }}/${{ needs.meta.outputs.project_name }} tags: | - type=ref,event=branch,suffix="-amd64-cuda" - type=ref,event=pr,suffix="-amd64-cuda" - type=semver,pattern={{version}},suffix="-amd64-cuda" - type=semver,pattern={{major}}.{{minor}},suffix="-amd64-cuda" - type=semver,pattern={{major}},suffix="-amd64-cuda" + type=ref,event=branch,suffix=-amd64-cuda + type=ref,event=pr,suffix=-amd64-cuda + type=semver,pattern={{version}},suffix=-amd64-cuda + type=semver,pattern={{major}}.{{minor}},suffix=-amd64-cuda + type=semver,pattern={{major}},suffix=-amd64-cuda - name: "Build & Push: amd64-cuda" uses: docker/build-push-action@v5 @@ -166,11 +166,11 @@ jobs: images: | ${{ needs.meta.outputs.dockerhub_owner }}/${{ needs.meta.outputs.project_name }} tags: | - type=ref,event=branch,suffix="-amd64-cpu" - type=ref,event=pr,suffix="-amd64-cpu" - type=semver,pattern={{version}},suffix="-amd64-cpu" - type=semver,pattern={{major}}.{{minor}},suffix="-amd64-cpu" - type=semver,pattern={{major}},suffix="-amd64-cpu" + type=ref,event=branch,suffix=-amd64-cpu + type=ref,event=pr,suffix=-amd64-cpu + type=semver,pattern={{version}},suffix=-amd64-cpu + type=semver,pattern={{major}}.{{minor}},suffix=-amd64-cpu + type=semver,pattern={{major}},suffix=-amd64-cpu - name: "Build & Push: amd64-cpu" uses: docker/build-push-action@v5