Skip to content

Commit

Permalink
add quotes around name and tag_name in release step
Browse files Browse the repository at this point in the history
  • Loading branch information
schuenke committed Oct 11, 2024
1 parent 68a7b9a commit 7ba740e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,11 @@ jobs:
github.rest.repos.createRelease({
draft: false,
generate_release_notes: true,
name: v${{ needs.build-pypi-package.outputs.version }},
name: "v${{ needs.build-pypi-package.outputs.version }}",
owner: context.repo.owner,
prerelease: false,
repo: context.repo.repo,
tag_name: v${{ needs.build-pypi-package.outputs.version }},
tag_name: "v${{ needs.build-pypi-package.outputs.version }}",
});
- name: Publish to PyPI
Expand Down

0 comments on commit 7ba740e

Please sign in to comment.