Compare commits

...

3 Commits

Author SHA1 Message Date
cuddle-please
742e8627e9 chore(release): 0.5.9
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-01-12 13:26:23 +00:00
b793003532
chore: fall back on timestamp if file not exists
All checks were successful
continuous-integration/drone/push Build is passing
2025-01-12 14:25:55 +01:00
cd84d66fc8 chore(release): v0.5.8 (#17)
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
chore(release): 0.5.8

Co-authored-by: cuddle-please <bot@cuddle.sh>
Reviewed-on: #17
2025-01-12 14:23:22 +01:00
2 changed files with 11 additions and 1 deletions

View File

@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.5.9] - 2025-01-12
### Other
- fall back on timestamp if file not exists
## [0.5.8] - 2025-01-12
### Fixed
- should've been equal
## [0.5.7] - 2025-01-12
### Added

View File

@ -42,7 +42,7 @@ resource "null_resource" "cloud_init_deb12_node" {
resource "null_resource" "node_caddy_template" {
triggers = {
file_content = filemd5(local_file.node_caddy.filename)
file_content = fileexists(local_file.node_caddy.filename) ? filemd5(local_file.node_caddy.filename) : timestamp()
}
connection {