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 }}