From f0cffbdc7ac36e7037ab60fe9dddbb2cab4a5e10 Mon Sep 17 00:00:00 2001 From: Eli Bosley Date: Thu, 4 Sep 2025 20:28:15 -0400 Subject: [PATCH] fix: prepend 'v' to API version in workflow dispatch inputs - Updated the build-plugin.yml workflow to include a 'v' prefix in the version input for the release-production workflow, ensuring proper version formatting during production releases. --- .github/workflows/build-plugin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-plugin.yml b/.github/workflows/build-plugin.yml index 0651c6cbf..cb6ed0a4f 100644 --- a/.github/workflows/build-plugin.yml +++ b/.github/workflows/build-plugin.yml @@ -153,7 +153,7 @@ jobs: uses: the-actions-org/workflow-dispatch@v4.0.0 with: workflow: release-production.yml - inputs: '{ "version": "${{ steps.vars.outputs.API_VERSION }}" }' + inputs: '{ "version": "v${{ steps.vars.outputs.API_VERSION }}" }' token: ${{ secrets.UNRAID_BOT_GITHUB_ADMIN_TOKEN }} - name: Upload to Cloudflare