From 1cc13a142f52613559c0099b9a82256698c5b5c4 Mon Sep 17 00:00:00 2001 From: Adarsh Shah Date: Mon, 8 Jan 2024 19:02:30 -0500 Subject: [PATCH] uses : to set env var for Windows --- .github/workflows/tembo_release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tembo_release.yml b/.github/workflows/tembo_release.yml index c99a2ca94..dae2c7955 100644 --- a/.github/workflows/tembo_release.yml +++ b/.github/workflows/tembo_release.yml @@ -92,10 +92,9 @@ jobs: run: | $TEMBO_VERSION = $(target/${{ matrix.target }}/release/tembo.exe --version) - echo $TEMBO_VERSION $TEMBO_CLI_NAME = $TEMBO_VERSION.replace(' ','-') - echo $TEMBO_CLI_NAME - echo "TEMBO_CLI_NAME=$TEMBO_CLI_NAME" >> $GITHUB_ENV + echo "TEMBO_CLI_NAME=$TEMBO_CLI_NAME" + echo "TEMBO_CLI_NAME=$TEMBO_CLI_NAME" >> $env:$GITHUB_ENV if: runner.os == 'Windows' - name: "Generate release changelog"