fix error

This commit is contained in:
Thomas Quandalle
2022-06-17 15:21:15 +02:00
parent d26b484d30
commit 4407cab740
3 changed files with 3 additions and 3 deletions

View File

@@ -26,4 +26,4 @@ jobs:
- name: Run Buildx - name: Run Buildx
run: docker buildx build --platform linux/amd64 -t kerberos/base:amd64-$(echo $GITHUB_SHA | cut -c1-7) --push . 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 - 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) run: docker buildx imagetools create -t kerberos/base:$(echo $GITHUB_SHA | cut -c1-7) kerberos/base:amd64-$(echo $GITHUB_SHA | cut -c1-7)

View File

@@ -26,4 +26,4 @@ jobs:
- name: Run Buildx - name: Run Buildx
run: docker buildx build --platform linux/arm64 -t kerberos/base:arm64-$(echo $GITHUB_SHA | cut -c1-7) --push . run: docker buildx build --platform linux/arm64 -t kerberos/base:arm64-$(echo $GITHUB_SHA | cut -c1-7) --push .
- name: Append manifest - 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) run: docker buildx imagetools create --append -t kerberos/base:$(echo $GITHUB_SHA | cut -c1-7) kerberos/base:arm64-$(echo $GITHUB_SHA | cut -c1-7)

View File

@@ -26,4 +26,4 @@ jobs:
- name: Run Buildx - name: Run Buildx
run: docker buildx build --platform linux/arm/v7 -t kerberos/base:armv7-$(echo $GITHUB_SHA | cut -c1-7) --push . run: docker buildx build --platform linux/arm/v7 -t kerberos/base:armv7-$(echo $GITHUB_SHA | cut -c1-7) --push .
- name: Append manifest - 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) run: docker buildx imagetools create --append -t kerberos/base:$(echo $GITHUB_SHA | cut -c1-7) kerberos/base:armv7-$(echo $GITHUB_SHA | cut -c1-7)