From dc188b02eaeeb87e61fd00842e1f67c414faba45 Mon Sep 17 00:00:00 2001 From: Arun Date: Thu, 11 Jan 2024 18:33:06 -0800 Subject: [PATCH] ci: Use GITHUB_OUTPUT envvar instead of set-output command --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b77b173..00790c9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -39,7 +39,7 @@ jobs: id: tagName run: | VERSION=$(cargo pkgid | cut -d# -f2 | cut -d: -f2) - echo "::set-output name=version::$VERSION" + echo "version=$VERSION" >> $GITHUB_OUTPUT # Steps to extract the last release notes from CHANGES: # 1. Remove the first three lines # 2. Stop at the next heading level