From b9d88c723f5eef63cfd29fd4dc8e4d70edadf015 Mon Sep 17 00:00:00 2001 From: mayurwaghmode Date: Thu, 11 Aug 2022 02:31:12 -0700 Subject: [PATCH] updated gomplate version and added ppc64le support Signed-off-by: mayurwaghmode --- .github/workflows/artifacts.yaml | 2 +- .github/workflows/docker.yaml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/artifacts.yaml b/.github/workflows/artifacts.yaml index 311c740c..6ed0097e 100644 --- a/.github/workflows/artifacts.yaml +++ b/.github/workflows/artifacts.yaml @@ -70,7 +70,7 @@ jobs: uses: docker/build-push-action@v3 with: context: . - platforms: linux/amd64,linux/arm/v7,linux/arm64 + platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le # cache-from: type=gha # cache-to: type=gha,mode=max push: ${{ github.event_name == 'push' }} diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index fe30d0cb..64e28e51 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -75,7 +75,7 @@ jobs: uses: docker/build-push-action@v3 with: context: . - platforms: linux/amd64,linux/arm/v7,linux/arm64 + platforms: linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le # cache-from: type=gha # cache-to: type=gha,mode=max push: ${{ github.event_name == 'push' }} diff --git a/Dockerfile b/Dockerfile index 66d29fc8..40b21cf1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,7 @@ ARG TARGETOS ARG TARGETARCH ARG TARGETVARIANT -ENV GOMPLATE_VERSION=v3.10.0 +ENV GOMPLATE_VERSION=v3.11.2 RUN wget -O /usr/local/bin/gomplate \ "https://github.com/hairyhenderson/gomplate/releases/download/${GOMPLATE_VERSION}/gomplate_${TARGETOS:-linux}-${TARGETARCH:-amd64}${TARGETVARIANT}" \