From 1084465ccd88367faa0896423c1b92f6f4a5c785 Mon Sep 17 00:00:00 2001 From: Ben Sarmiento Date: Sat, 28 Oct 2023 22:39:31 +0200 Subject: [PATCH] use new way of using outputs --- .github/workflows/binary-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/binary-build.yml b/.github/workflows/binary-build.yml index f99271a..3f1d303 100644 --- a/.github/workflows/binary-build.yml +++ b/.github/workflows/binary-build.yml @@ -17,9 +17,9 @@ jobs: - id: set_version run: | if [[ $GITHUB_REF == refs/tags/* ]]; then - echo "::set-output name=version::${GITHUB_REF#refs/tags/}" + echo "version=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT else - echo "::set-output name=version::latest" + echo "version=latest" >> $GITHUB_OUTPUT fi build: