From 6c2e60db634016121d4ef9086afac5a37460e347 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Sun, 23 Jul 2023 08:59:37 -0600 Subject: [PATCH] Change order of pushes --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6c083abb..61af0563f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,13 +80,6 @@ jobs: set: | rpi.tags=ghcr.io/${{ steps.lowercaseRepo.outputs.lowercase }}:${{ github.ref_name }}-${{ env.SHORT_SHA }}-rpi *.cache-from=type=gha - - name: Assemble and push default build - uses: int128/docker-manifest-create-action@v1 - with: - tags: ghcr.io/${{ steps.lowercaseRepo.outputs.lowercase }}:${{ github.ref_name }}-${{ env.SHORT_SHA }} - suffixes: | - -amd64 - -rpi - name: Build and push TensorRT uses: docker/bake-action@v3 with: @@ -96,3 +89,10 @@ jobs: set: | tensorrt.tags=ghcr.io/${{ steps.lowercaseRepo.outputs.lowercase }}:${{ github.ref_name }}-${{ env.SHORT_SHA }}-tensorrt *.cache-from=type=gha + - name: Assemble and push default build + uses: int128/docker-manifest-create-action@v1 + with: + tags: ghcr.io/${{ steps.lowercaseRepo.outputs.lowercase }}:${{ github.ref_name }}-${{ env.SHORT_SHA }} + suffixes: | + -amd64 + -rpi \ No newline at end of file