From 199207aeb0e1c438ca78f83cecd9f06151b7391a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Parodi=2C=20Eugenio=20=F0=9F=8C=B6?= Date: Wed, 2 Apr 2025 08:54:51 +0100 Subject: [PATCH] chore: fix wf --- .github/workflows/release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b942b223..89e6245b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -130,12 +130,11 @@ jobs: - name: Upload artifatcs to Release shell: bash - needs: create-artifact env: GITHUB_TOKEN: ${{ secrets.GH_PAT_TOKEN }} TAG_NAME: ${{ fromJson(needs.release-please.outputs.rp_out)['TermTk--tag_name'] }} run: | - _TMP=${{ needs.create-artifacts.outputs.artifacts_dir }} + _TMP=${{ steps.create-artifacts.outputs.artifacts_dir }} gh release upload ${TAG_NAME} ${_TMP}/TermTk.tgz gh release upload ${TAG_NAME} ${_TMP}/tutorial.tgz gh release upload ${TAG_NAME} ${_TMP}/tests.tgz