From d7011517295d023b54136daca0df30eb9a331ed5 Mon Sep 17 00:00:00 2001 From: Eli Bosley Date: Thu, 3 Apr 2025 11:51:58 -0400 Subject: [PATCH] chore: release tag corrected --- .github/workflows/build-plugin.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-plugin.yml b/.github/workflows/build-plugin.yml index da9437354..0d1fe9407 100644 --- a/.github/workflows/build-plugin.yml +++ b/.github/workflows/build-plugin.yml @@ -140,11 +140,12 @@ jobs: if: inputs.RELEASE_CREATED == 'true' env: GITHUB_TOKEN: ${{ github.token }} + RELEASE_TAG: ${{ inputs.RELEASE_TAG }} run: | # For each file in release directory for file in deploy/*; do echo "Uploading $file to release..." - gh release upload "${inputs.RELEASE_TAG}" "$file" --clobber + gh release upload "${RELEASE_TAG}" "$file" --clobber done - name: Workflow Dispatch and wait