From 41c33eb349d3ad443d0c27ee382abd775a4dfba6 Mon Sep 17 00:00:00 2001 From: Micah Jerome Ellison Date: Wed, 2 Nov 2022 14:05:37 -0700 Subject: [PATCH] Replace deprecated set-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 eff2d991..c5376b93 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 "::set-output name=pypi_version::$pypi_version" + echo "pypi_version=$pypi_version" >> $GITHUB_OUTPUT release_homebrew: if: ${{ github.event.inputs.include_brew == 'true' }}