From 81a8c94d3321851ffac8879e3bac230ab3b74bfd Mon Sep 17 00:00:00 2001 From: Pierre Slamich Date: Sun, 24 Nov 2024 10:36:58 +0100 Subject: [PATCH] ci: tentative fix for set-output deprecation (#5584) * ci: tentative fix for set-output deprecation * Update .github/workflows/internal-release.yml Co-authored-by: monsieurtanuki --------- Co-authored-by: monsieurtanuki --- .github/workflows/internal-release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/internal-release.yml b/.github/workflows/internal-release.yml index e0cb8e730a17..700dcb7924dd 100644 --- a/.github/workflows/internal-release.yml +++ b/.github/workflows/internal-release.yml @@ -66,8 +66,7 @@ jobs: - name: Set output id: set_output - run: echo "::set-output name=VERSION_NAME::${{ env.VERSION_NAME }}" && echo "::set-output name=VERSION_CODE::${{ env.VERSION_CODE }}" - + run: echo "VERSION_CODE=${{ env.VERSION_CODE }}" >> $GITHUB_OUTPUT && echo "VERSION_NAME=${{ env.VERSION_NAME }}" >> $GITHUB_OUTPUT android-release: concurrency: group: android-release