From 04c32aa45a2a47b24d8445b218f2df02bbb40fa2 Mon Sep 17 00:00:00 2001 From: Marco Ferrari Date: Mon, 3 Oct 2022 04:44:43 +0200 Subject: [PATCH] Assign the RELEASE_VERSION variable (#3385) --- .github/workflows/deploy-release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-release.yml b/.github/workflows/deploy-release.yml index 67678460..ba475f05 100644 --- a/.github/workflows/deploy-release.yml +++ b/.github/workflows/deploy-release.yml @@ -50,7 +50,8 @@ jobs: >> "${GITHUB_ENV}" if [ -z "${RELEASE_VERSION}" ]; then echo "No release version found in environment, using input..." - echo "RELEASE_VERSION=${{ github.event.inputs.release_version }}" \ + RELEASE_VERSION="${{ github.event.inputs.release_version }}" + echo "RELEASE_VERSION=${RELEASE_VERSION}" \ >> "${GITHUB_ENV}" fi {