From 77d7244ddcc6d983071f3ca827bb82cc62dc5481 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 18 May 2026 23:35:20 +0000 Subject: [PATCH] fix: replace deprecated set-output with GITHUB_OUTPUT env file Agent-Logs-Url: https://github.com/BenjaminMichaelis/TrxLib/sessions/9d104c72-63f8-4012-8453-adb89048b80e Co-authored-by: BenjaminMichaelis <22186029+BenjaminMichaelis@users.noreply.github.com> --- .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 71355cb..91685c1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -72,6 +72,6 @@ jobs: - name: Push NuGet run: | $tagVersion = "${{ github.ref }}".substring(11) - echo "::set-output name=TAG_VERSION::$tagVersion" + echo "TAG_VERSION=$tagVersion" >> $env:GITHUB_OUTPUT dotnet nuget push TrxLib.$tagVersion.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ steps.login.outputs.NUGET_API_KEY }} --skip-duplicate id: tag-version