From f2fafa169cb85c12eadf18e30758cabda3e75c68 Mon Sep 17 00:00:00 2001 From: Scott Minor Date: Wed, 17 Jul 2024 16:54:08 -0400 Subject: [PATCH] release: Fix `version` input substitution This change attempts to fix an issue with the release workflow where the input parameter is not correctly supplied to the release script. The new substitution matches what is in documented examples [here](https://docs.github.com/en/enterprise-cloud@latest/actions/using-workflows/workflow-syntax-for-github-actions#example-of-onworkflow_dispatchinputs). Tested: no --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3a94baf..5c54c15 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,6 +26,6 @@ jobs: - uses: actions/checkout@v4 - name: release run: | - infra/release.sh "${{ github.events.inputs.version }}" + infra/release.sh "${{ inputs.version }}" env: GITHUB_TOKEN: ${{ github.token }}