From c523fb8c412d28c2c25dad884995292d97af8a3a Mon Sep 17 00:00:00 2001 From: shawnfunke Date: Fri, 16 Sep 2022 09:08:37 +0200 Subject: [PATCH] [ci] fix env substitution for changelog generation --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index df4e9bb..900772c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -51,8 +51,8 @@ jobs: - name: Generate Changelog Notes run: | - VERSION=${TAG_VERSION#"v"} - VERSION_ANCHOR=`echo $VERSION | sed --regexp-extended 's/\.//g'` + export VERSION=${TAG_VERSION#"v"} + export VERSION_ANCHOR=`echo $VERSION | sed --regexp-extended 's/\.//g'` envsubst < $GITHUB_WORKSPACE/.github/workflows/release-notes.md > $RUNNER_TEMP/notes.md