From fa5ca3bfb043bb49fe74ad0eba4417e04454ab44 Mon Sep 17 00:00:00 2001 From: Shubha Rajan Date: Wed, 18 Jan 2023 13:44:21 -0800 Subject: [PATCH] chore: set multiline string to env var in workflow (#1123) following the example here: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#example-2 --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0046c688a..7c5f8889d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -89,7 +89,9 @@ jobs: BUCKET_NAME: '${{ secrets.RELEASE_BUCKET_NAME }}' run: | ./.release/generate_sha.sh - echo "RELEASE_TABLE=$(cat release_table.md)" >> $GITHUB_ENV + echo 'RELEASE_TABLE<> $GITHUB_ENV + cat release_table.md >> $GITHUB_ENV + echo 'EOF' >> $GITHUB_ENV - name: Update Release Notes id: update_release uses: tubone24/update_release@v1.0