From 66896790e740125c221b4e930be815f82d5310a6 Mon Sep 17 00:00:00 2001 From: Arun Date: Mon, 22 Jan 2024 17:11:10 -0800 Subject: [PATCH] Quote envvar to match documentation Signed-off-by: Arun --- .github/workflows/monthly_release.yml | 2 +- .github/workflows/publish_release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/monthly_release.yml b/.github/workflows/monthly_release.yml index d1c7ff89..364cb88b 100644 --- a/.github/workflows/monthly_release.yml +++ b/.github/workflows/monthly_release.yml @@ -29,7 +29,7 @@ jobs: git config user.name github-actions git config user.email github-actions@github.com semantic-release version - echo "version=$(semantic-release print-version --current)" >> $GITHUB_OUTPUT + echo "version=$(semantic-release print-version --current)" >> "$GITHUB_OUTPUT" semantic-release changelog > './CHANGELOG.md' - name: Create release pull request uses: peter-evans/create-pull-request@v3 diff --git a/.github/workflows/publish_release.yml b/.github/workflows/publish_release.yml index 08e213db..6cbaa39f 100644 --- a/.github/workflows/publish_release.yml +++ b/.github/workflows/publish_release.yml @@ -22,7 +22,7 @@ jobs: id: vers run: | pip install python-semantic-release - echo "version=$(semantic-release print-version --current)" >> $GITHUB_OUTPUT + echo "version=$(semantic-release print-version --current)" >> "$GITHUB_OUTPUT" - name: Create release id: create_release uses: actions/create-release@v1