Skip to content

Commit

Permalink
removes refs/tags/ prefix from release name (#16800)
Browse files Browse the repository at this point in the history
* fix(15337): fix release names in update automation

* fix(15337): fix release names in update automation

* fix(15337): fix release names in update automation
  • Loading branch information
2nikhiltom authored Jun 17, 2024
1 parent 3931ace commit c02f48c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ jobs:
script: |
github.rest.repos.createRelease({
tag_name: context.ref,
name: ${{ github.ref_name }},
name: '${{ github.ref_name }}',
draft: false,
prerelease: true,
owner: context.repo.owner,
repo: context.repo.repo,
});
})

0 comments on commit c02f48c

Please sign in to comment.