diff --git a/.github/workflows/amd64.yaml b/.github/workflows/amd64.yaml index 019573b..ea2e4bc 100644 --- a/.github/workflows/amd64.yaml +++ b/.github/workflows/amd64.yaml @@ -26,4 +26,4 @@ jobs: - name: Run Buildx run: docker buildx build --platform linux/amd64 -t kerberos/base:amd64-$(echo $GITHUB_SHA | cut -c1-7) --push . - name: Create new and append to manifest - run: docker buildx imagetools create -t kerberos/base:-$(echo $GITHUB_SHA | cut -c1-7) kerberos/base:amd64-$(echo $GITHUB_SHA | cut -c1-7) \ No newline at end of file + run: docker buildx imagetools create -t kerberos/base:$(echo $GITHUB_SHA | cut -c1-7) kerberos/base:amd64-$(echo $GITHUB_SHA | cut -c1-7) \ No newline at end of file diff --git a/.github/workflows/arm64.yaml b/.github/workflows/arm64.yaml index 81e4986..0523eb0 100644 --- a/.github/workflows/arm64.yaml +++ b/.github/workflows/arm64.yaml @@ -26,4 +26,4 @@ jobs: - name: Run Buildx run: docker buildx build --platform linux/arm64 -t kerberos/base:arm64-$(echo $GITHUB_SHA | cut -c1-7) --push . - name: Append manifest - run: docker buildx imagetools create --append -t kerberos/base:-$(echo $GITHUB_SHA | cut -c1-7) kerberos/base:arm64-$(echo $GITHUB_SHA | cut -c1-7) \ No newline at end of file + run: docker buildx imagetools create --append -t kerberos/base:$(echo $GITHUB_SHA | cut -c1-7) kerberos/base:arm64-$(echo $GITHUB_SHA | cut -c1-7) \ No newline at end of file diff --git a/.github/workflows/armv7.yaml b/.github/workflows/armv7.yaml index 2ef157d..11adf01 100644 --- a/.github/workflows/armv7.yaml +++ b/.github/workflows/armv7.yaml @@ -26,4 +26,4 @@ jobs: - name: Run Buildx run: docker buildx build --platform linux/arm/v7 -t kerberos/base:armv7-$(echo $GITHUB_SHA | cut -c1-7) --push . - name: Append manifest - run: docker buildx imagetools create --append -t kerberos/base:-$(echo $GITHUB_SHA | cut -c1-7) kerberos/base:armv7-$(echo $GITHUB_SHA | cut -c1-7) \ No newline at end of file + run: docker buildx imagetools create --append -t kerberos/base:$(echo $GITHUB_SHA | cut -c1-7) kerberos/base:armv7-$(echo $GITHUB_SHA | cut -c1-7) \ No newline at end of file