Skip to content

Commit

Permalink
fix(15337): fix release names in update automation
Browse files Browse the repository at this point in the history
  • Loading branch information
2nikhiltom committed Jun 17, 2024
1 parent 041693e commit 275eb71
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: context.ref,
draft: false,
prerelease: true,
owner: context.repo.owner,
repo: context.repo.repo,
})
});

0 comments on commit 275eb71

Please sign in to comment.