From 2ad7acb78a73300ebb4fca6d7509867de53b55e6 Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Wed, 2 Nov 2022 19:42:45 -0700 Subject: [PATCH] fix quotes in output command --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 12d13b20..4b55f253 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -111,7 +111,7 @@ jobs: id: pypi-version-getter run: | pypi_version="$(find dist/jrnl-*.tar.gz | sed -r 's!dist/jrnl-(.*)\.tar\.gz!\1!')" - echo 'pypi_version="$pypi_version"' >> $GITHUB_OUTPUT + echo "pypi_version=$pypi_version" >> "$GITHUB_OUTPUT" release_homebrew: if: ${{ github.event.inputs.include_brew == 'true' }}