From 322f66e70c1056b3811a367026cfd78ed6c77279 Mon Sep 17 00:00:00 2001 From: Sergejs Kostjucenko <85877331+sergejparity@users.noreply.github.com> Date: Mon, 12 Jun 2023 18:56:02 +0300 Subject: [PATCH] fix gha set-output command (#13) --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6b40abd..54def38 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: - name: Retrieve Version if: startsWith(github.ref, 'refs/tags/') id: get_tag_version - run: echo ::set-output name=TAG_VERSION::${GITHUB_REF/refs\/tags\//} + run: echo "TAG_VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT - uses: actions/setup-node@v3 with: node-version: "16.x"