From 8ddcdfc4611aeb8ef1d076e2844b4b643a4d4eed Mon Sep 17 00:00:00 2001 From: Dave Mihalcik <38867245+dmihalcik-virtru@users.noreply.github.com> Date: Tue, 19 Sep 2023 15:04:42 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=F0=9F=98=AC=20Fix=20for=20misnamed?= =?UTF-8?q?=20env=20variable=20(#32)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit relevant doc: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#setting-an-output-parameter --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c495843..d3d9366 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -35,7 +35,7 @@ jobs: exit 1 fi - run: |- - echo "VERSION=$(cat VERSION)" >> $GITHUB_ENV + echo "VERSION=$(cat VERSION)" >> $GITHUB_OUTPUT echo "SHA=sha-$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT id: info