From 63636e847e94cea466634f7a4fbe5c0085a99f93 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Thu, 16 Nov 2023 16:12:41 -0500 Subject: [PATCH] Fix inputs JSON for `workflow-dispatch` action --- .github/workflows/verify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 836fd90..c44507b 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -18,4 +18,4 @@ jobs: with: workflow: verify-staged-artifacts.yml token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }} - inputs: '{ "releaseVersion": ${{ inputs.releaseVersion }} }' \ No newline at end of file + inputs: '{ "releaseVersion": "${{ inputs.releaseVersion }}" }' \ No newline at end of file