From 37bd57313e9c267132ca377a24b96708cc03bb04 Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 21 Feb 2022 13:56:29 +1100 Subject: [PATCH] Merge pull request #2656 from SchrodingersGat/actions-fix Fix build-args in workflows (cherry picked from commit 5045e8c0662777b20ec56377f695c3ffcafeed23) --- .github/workflows/docker_stable.yaml | 2 +- .github/workflows/docker_tag.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker_stable.yaml b/.github/workflows/docker_stable.yaml index 65c31dd9dc..e892b24d13 100644 --- a/.github/workflows/docker_stable.yaml +++ b/.github/workflows/docker_stable.yaml @@ -36,7 +36,7 @@ jobs: push: true target: production build-args: - branch: stable + branch=stable tags: inventree/inventree:stable - name: Image Digest run: echo ${{ steps.docker_build.outputs.digest }} diff --git a/.github/workflows/docker_tag.yaml b/.github/workflows/docker_tag.yaml index 5de27f48be..a9f1c646fc 100644 --- a/.github/workflows/docker_tag.yaml +++ b/.github/workflows/docker_tag.yaml @@ -34,5 +34,5 @@ jobs: push: true target: production build-args: - tag: ${{ github.event.release.tag_name }} + tag=${{ github.event.release.tag_name }} tags: inventree/inventree:${{ github.event.release.tag_name }}