Skip to content
This repository was archived by the owner on Sep 2, 2022. It is now read-only.

Commit d6c00af

Browse files
committed
Fix version release tag message being "" instead of empty
Little hacky but no variations of `--message` and `""` seemed to work This simply a bug in EndBug/add-and-commit action's argument parsing, the original one is ofc a completely valid Git command.
1 parent 6e9f83d commit d6c00af

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
with:
5757
add: '["pyproject.toml", "CHANGELOG.md"]'
5858
message: 'Release ${{ github.event.inputs.version }}'
59-
tag: 'v${{ github.event.inputs.version }} --annotate --message=""'
59+
tag: 'v${{ github.event.inputs.version }} --annotate --file <(true)'
6060
default_author: github_actions
6161

6262
- name: "Create a GitHub release"

0 commit comments

Comments
 (0)