3 Commits

Author SHA1 Message Date
3b3d31b972 chore(changelog): update changelog for v0.1.1
All checks were successful
Create Major Version Tag / update-major-tag (release) Successful in 4s
2025-06-27 20:48:45 +00:00
0a5c2af9a9 chore(version): bump version to 0.1.1
All checks were successful
Auto Changelog & Release / release (push) Successful in 7s
2025-06-27 22:48:36 +02:00
fba5c57fd4 fix(configs): correct environment variable for author email
- Replaces incorrect `AUTHOR_MAIL` with `AUTHOR_EMAIL` in template
- Ensures proper environment variable usage for email retrieval
2025-06-27 22:48:36 +02:00
3 changed files with 4 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [unreleased] ## [0.1.1](https://git.0xmax42.io/actions/deb-changelog-action/compare/v0.1.0..v0.1.1) - 2025-06-27
### 🚀 Features ### 🚀 Features
@@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file.
### 🐛 Bug Fixes ### 🐛 Bug Fixes
- *(configs)* Correct environment variable for author email - ([fba5c57](https://git.0xmax42.io/actions/deb-changelog-action/commit/fba5c57fd4ecbea544f45d2d381542eefba3bcd6))
- *(run)* Ensure environment variables are passed - ([e689046](https://git.0xmax42.io/actions/deb-changelog-action/commit/e689046d01682da4496df446104c4a9eb694c8eb)) - *(run)* Ensure environment variables are passed - ([e689046](https://git.0xmax42.io/actions/deb-changelog-action/commit/e689046d01682da4496df446104c4a9eb694c8eb))
- *(run)* Ensure environment variables are passed to script - ([c9930e7](https://git.0xmax42.io/actions/deb-changelog-action/commit/c9930e794915370e7f8e0d81337baa444ef93a85)) - *(run)* Ensure environment variables are passed to script - ([c9930e7](https://git.0xmax42.io/actions/deb-changelog-action/commit/c9930e794915370e7f8e0d81337baa444ef93a85))

View File

@@ -1 +1 @@
0.1.0 0.1.1

View File

@@ -8,7 +8,7 @@ body = """\
{% endfor %}\ {% endfor %}\
{% endfor %} {% endfor %}
-- {{ get_env(name="AUTHOR_NAME") }} <{{ get_env(name="AUTHOR_MAIL") }}> {% if version %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% else %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% endif %} -- {{ get_env(name="AUTHOR_NAME") }} <{{ get_env(name="AUTHOR_EMAIL") }}> {% if version %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% else %}{{ now() | date(format="%a, %d %b %Y %H:%M:%S %z") }}{% endif %}
""" """