From: Marcel van der Veldt Date: Wed, 4 Sep 2024 10:47:45 +0000 (+0200) Subject: fix typo in release workflow X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=d1bc051ba45508b3df525e1c857534c6570a4ee0;p=music-assistant-server.git fix typo in release workflow --- diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5653d2b4..51bf8b25 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