From 758914d5979b02e5ee1809e3dbe219250fa0260a Mon Sep 17 00:00:00 2001 From: BlurOne! <61806094+BlurOne-GIT@users.noreply.github.com> Date: Sun, 13 Oct 2024 22:55:48 -0300 Subject: [PATCH] Update publish.yml --- .github/workflows/publish.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2bef812..a383322 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -114,12 +114,13 @@ jobs: run: | | if ($env:steps_get_latest_tag_outputs_tag) { - "suffix=$($env:steps_get_latest_tag_outputs_tag)" | Out-File -FilePath $env:GITHUB_ENV -Append + "suffix=$env:steps_get_latest_tag_outputs_tag" | Out-File -FilePath $env:GITHUB_ENV -Append } else { - "suffix=$($env:steps_get_last_commit_outputs_sha)" | Out-File -FilePath $env:GITHUB_ENV -Append + "suffix=$env:steps_get_last_commit_outputs_sha" | Out-File -FilePath $env:GITHUB_ENV -Append } + - name: Debug artifact suffix run: | echo "Artifact suffix is: ${{ steps.set_artifact_suffix.outputs.suffix }}"