File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22All 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
Original file line number Diff line number Diff 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 )
4949release = repo .create_git_release (
5050 tag ,
5151 fillTemplate (env ['INPUT_NAME-TEMPLATE' ], data ),
You can’t perform that action at this time.
0 commit comments