From 3ef2ac8a77b50c1fbac1fa2173acccbf1736a011 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Sat, 28 Jan 2023 11:14:00 -0800 Subject: [PATCH] correct tags in docker image workflow --- .github/workflows/docker-image.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index b4f9546ae..15142984d 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -45,8 +45,9 @@ jobs: token: ${{ secrets.DEPOT_PROJECT_TOKEN }} push: true context: backend - tags: infisical/backend:${{ steps.commit.outputs.short }}, - infisical/backend:latest + tags: | + infisical/backend:${{ steps.commit.outputs.short }} + infisical/backend:latest platforms: linux/amd64,linux/arm64 frontend-image: @@ -94,8 +95,9 @@ jobs: push: true token: ${{ secrets.DEPOT_PROJECT_TOKEN }} context: frontend - tags: infisical/frontend:${{ steps.commit.outputs.short }}, - infisical/frontend:latest + tags: | + infisical/frontend:${{ steps.commit.outputs.short }} + infisical/frontend:latest platforms: linux/amd64,linux/arm64 build-args: | POSTHOG_API_KEY=${{ secrets.PUBLIC_POSTHOG_API_KEY }} @@ -135,4 +137,4 @@ jobs: exit 1 else echo "Helm upgrade was successful" - fi \ No newline at end of file + fi