From 86fa1982541c8273a880cccaf3c14df8035dee73 Mon Sep 17 00:00:00 2001 From: Sandy Carter Date: Sat, 10 Jun 2023 20:04:57 -0400 Subject: [PATCH] Fix set output deprecation --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 53ef911..f8700de 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,9 +29,9 @@ jobs: BGFX_CMAKE_REVISION=$(git rev-list HEAD --count) SHA=$(cd bgfx && git rev-parse HEAD) TAG="v1.${API_VERSION}.${BGFX_REVISION}-${BGFX_CMAKE_REVISION}" - echo "::set-output name=revision::${BGFX_REVISION}" - echo "::set-output name=sha::${SHA}" - echo "::set-output name=tag::${TAG}" + echo "revision=${BGFX_REVISION}" >> $GITHUB_OUTPUT + echo "sha=${SHA}" >> $GITHUB_OUTPUT + echo "tag=${TAG}" >> $GITHUB_OUTPUT build: name: ${{ matrix.os }}