Skip to content

Commit

Permalink
fix(gha): remove refs/tags from github release names (#968)
Browse files Browse the repository at this point in the history
see https://docs.github.com/en/actions/learn-github-actions/contexts#github-context for documentation of github.ref vs. github.ref_name
  • Loading branch information
dbyron-sf committed Mar 30, 2023
1 parent 7bd6c8b commit dc847ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
body: |
${{ steps.release_info.outputs.CHANGELOG }}
draft: false
name: ${{ github.event.repository.name }} ${{ github.ref }}
name: ${{ github.event.repository.name }} ${{ github.ref_name }}
prerelease: ${{ steps.release_info.outputs.IS_CANDIDATE }}
tag_name: ${{ github.ref }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit dc847ca

Please sign in to comment.