Skip to content

Commit 124308b

Browse files
Fix deprecated set-output command in Deploy.yml workflow
Co-authored-by: BenjaminMichaelis <22186029+BenjaminMichaelis@users.noreply.github.com>
1 parent 6557806 commit 124308b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/Deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ jobs:
6060
- name: Push NuGet
6161
run: |
6262
$tagVersion = "${{ github.ref }}".substring(11)
63-
echo "::set-output name=TAG_VERSION::$tagVersion"
63+
echo "TAG_VERSION=$tagVersion" >> $env:GITHUB_OUTPUT
6464
dotnet nuget push IntelliTect.Analyzers.$tagVersion.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate
6565
id: tag-version

0 commit comments

Comments
 (0)