From b65e9ee5423a1701ac057a56a09973ed9b2ea7b8 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Sat, 14 Jun 2025 18:45:34 +0200 Subject: [PATCH] fix(action): ensure fallback for release token input - Adds a fallback to an empty string for the release token input to prevent potential issues when the input is undefined. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 64e4ddd..d1f7751 100644 --- a/action.yml +++ b/action.yml @@ -51,5 +51,5 @@ runs: if: steps.detect.outputs.version_changed == 'true' && github.ref == 'refs/heads/main' shell: bash env: - RELEASE_PUBLISH_TOKEN: ${{ inputs.token }} + RELEASE_PUBLISH_TOKEN: ${{ inputs.token || '' }} run: bash ${{ github.action_path }}/scripts/release-from-version.sh