From 27592961d71414826e2048fd2cc83201d5da4e25 Mon Sep 17 00:00:00 2001 From: Shay Rojansky Date: Fri, 10 Jul 2026 11:00:48 +0200 Subject: [PATCH] Fix deprecated GitHub Actions outputs Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 830c70552..d9594c685 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -133,10 +133,10 @@ jobs: run: | if [[ ${{ github.ref }} =~ ^refs/tags/v[0-9]+\.[0-9]+\.[0-9]+ ]]; then echo "Release tag detected" - echo "::set-output name=is_release::true" + echo "is_release=true" >> "$GITHUB_OUTPUT" if [[ ${{ github.ref }} =~ ^refs/tags/v[0-9]+\.[0-9]+\.[0-9]+.*- ]]; then echo "Prerelease tag detected" - echo "::set-output name=is_prerelease::true" + echo "is_prerelease=true" >> "$GITHUB_OUTPUT" fi fi