Skip to content

Commit

Permalink
Merge pull request #727 from alphagov/pp-11548/fix-release-name
Browse files Browse the repository at this point in the history
PP-11548: Fix release name in createRelease step
  • Loading branch information
jfharden authored Sep 20, 2023
2 parents 9df9674 + b78908c commit 15293f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
const releaseResponse = await github.rest.repos.createRelease({
owner: context.repo.owner,
repo: context.repo.repo,
name: "Release $PACKAGE_VERSION",
name: "Release ${{ steps.set-package-version.outputs.PACKAGE_VERSION }}",
tag_name: "${{ steps.set-package-version.outputs.PACKAGE_VERSION }}",
generate_release_notes: true,
})
Expand Down

0 comments on commit 15293f2

Please sign in to comment.