From d29b3778a24f8e992acc60e2af88b4d584b4cffd Mon Sep 17 00:00:00 2001 From: Micah Jerome Ellison Date: Wed, 2 Nov 2022 14:14:43 -0700 Subject: [PATCH] Resolve SC2086 - double quote to prevent globbing and word splitting --- .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 c5376b93..12d13b20 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' }}