diff --git a/.github/workflows/release_draft.yml b/.github/workflows/release_draft.yml index 75c295f..72bee14 100644 --- a/.github/workflows/release_draft.yml +++ b/.github/workflows/release_draft.yml @@ -18,7 +18,7 @@ name: Release - create draft release on: workflow_dispatch: inputs: - tagName: + tag-name: description: 'Name of git tag to be created, and then draft release created. Syntax: "v[0-9]+.[0-9]+.[0-9]+".' required: true @@ -42,7 +42,7 @@ jobs: core.setFailed('Tag does not match the required format "v[0-9]+.[0-9]+.[0-9]+"'); return; } - tag-name: ${{ github.event.inputs.tagName }} + tag-name: ${{ github.event.inputs.tag-name }} - name: Check tag's correct version increment uses: actions/github-script@v7 @@ -79,7 +79,7 @@ jobs: return; } - tag-name: ${{ github.event.inputs.tagName }} + tag-name: ${{ github.event.inputs.tag-name }} generate-release-notes: needs: check-tag @@ -99,7 +99,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tag-name: ${{ github.event.inputs.tagName }} + tag-name: ${{ github.event.inputs.tag-name }} chapters: '[ {"title": "Breaking Changes 💥", "label": "breaking-change"}, {"title": "New Features 🎉", "label": "feature"},