From d1bc051ba45508b3df525e1c857534c6570a4ee0 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Wed, 4 Sep 2024 12:47:45 +0200 Subject: [PATCH] fix typo in release workflow --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5653d2b44..51bf8b258 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -128,7 +128,7 @@ jobs: push: true build-args: | MASS_VERSION=${{ needs.build-artifact.outputs.version }} - BASE_IMAGE_VERSION=${{ BASE_IMAGE_VERSION_STABLE} }} + BASE_IMAGE_VERSION=${{ env.BASE_IMAGE_VERSION_STABLE }} - name: Build and Push pre-release uses: docker/build-push-action@v6.7.0 if: ${{ github.event.release.prerelease == true }} @@ -142,7 +142,7 @@ jobs: push: true build-args: | MASS_VERSION=${{ needs.build-artifact.outputs.version }} - BASE_IMAGE_VERSION=${{ BASE_IMAGE_VERSION_BETA} }} + BASE_IMAGE_VERSION=${{ env.BASE_IMAGE_VERSION_BETA }} release-notes-update: name: Updates the release notes and changelog