Skip to content

Commit

Permalink
Remove dependency on the git ref when creating releases
Browse files Browse the repository at this point in the history
  • Loading branch information
mhalbritter committed Apr 18, 2024
1 parent b13d006 commit 6b44072
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/create-github-release/action.yml
Expand Up @@ -15,9 +15,9 @@ runs:
with:
milestone: ${{ inputs.milestone }}
token: ${{ inputs.token }}
config-file: ${{ github.action_path }}/changelog-generator.yml
config-file: .github/actions/create-github-release/changelog-generator.yml
- name: Create GitHub Release
env:
GITHUB_TOKEN: ${{ inputs.token }}
shell: bash
run: gh release create ${{ github.ref_name }} --notes-file changelog.md
run: gh release create ${{ format('v{0}', inputs.milestone) }} --notes-file changelog.md

0 comments on commit 6b44072

Please sign in to comment.