From 018ab0cd0580ae3b777e5c629e2cfd144346b575 Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 1 Oct 2021 13:26:43 +1000 Subject: [PATCH] Fixes for docker build steps --- .github/workflows/docker_stable.yaml | 4 ++-- .github/workflows/docker_tag.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker_stable.yaml b/.github/workflows/docker_stable.yaml index 3d435e40da..99818507a8 100644 --- a/.github/workflows/docker_stable.yaml +++ b/.github/workflows/docker_stable.yaml @@ -34,8 +34,8 @@ jobs: platforms: linux/amd64,linux/arm64,linux/arm/v7 push: true target: production - build-args: - branch: stable + build-args: | + branch=stable repository: inventree/inventree tags: inventree/inventree:stable - name: Image Digest diff --git a/.github/workflows/docker_tag.yaml b/.github/workflows/docker_tag.yaml index b3b0c53d12..e7a48b9c13 100644 --- a/.github/workflows/docker_tag.yaml +++ b/.github/workflows/docker_tag.yaml @@ -32,7 +32,7 @@ jobs: platforms: linux/amd64,linux/arm64,linux/arm/v7 push: true target: production - build-args: - tag: ${{ github.event.release.tag_name }} + build-args: | + tag=${{ github.event.release.tag_name }} repository: inventree/inventree tags: inventree/inventree:${{ github.event.release.tag_name }}