Skip to content

Commit effc6b5

Browse files
committed
bump to 1.1.1
2 parents 0de65cb + 5f8cc5c commit effc6b5

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [1.1.1] - 2023-05-05
5+
### Fixed
6+
- Accidently used tuple for tag name.
7+
48
## [1.1.0] - 2023-05-05
59
### Added
610
- Outputs the names of the Git tags of the release and the major version; i.e., the filled templates are outputed.
@@ -14,6 +18,7 @@ All notable changes to this project will be documented in this file.
1418
### Added
1519
- First release.
1620

21+
[1.1.1]: https://github.com/lumynou5/github-release-action/releases/tag/v1.1.1
1722
[1.1.0]: https://github.com/lumynou5/github-release-action/releases/tag/v1.1.0
1823
[1.0.1]: https://github.com/lumynou5/github-release-action/releases/tag/v1.0.1
1924
[1.0.0]: https://github.com/lumynou5/github-release-action/releases/tag/v1.0.0

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def fillTemplate(template, data):
4545
}
4646

4747
# Create release.
48-
tag = fillTemplate(env['INPUT_TAG-TEMPLATE'], data),
48+
tag = fillTemplate(env['INPUT_TAG-TEMPLATE'], data)
4949
release = repo.create_git_release(
5050
tag,
5151
fillTemplate(env['INPUT_NAME-TEMPLATE'], data),

0 commit comments

Comments
 (0)