We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6011b5 commit 1e1089fCopy full SHA for 1e1089f
CHANGELOG.md
@@ -9,3 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
## [0.1.1] - 2022-05-17
10
11
- Disable archive file caching to support idempotency - fix for CI/CD pipelines.
12
+
13
+## [0.1.2] - 2023-12-12
14
15
+- Add trigger to python packaging resource to ensure that the package is rebuilt when the source code changes and fix the initial build.
main.tf
@@ -44,6 +44,11 @@ resource "null_resource" "package" {
44
-r ${local.requirements_path}
45
EOT
46
}
47
48
+ triggers = {
49
+ # trigger package creation if content hash changes
50
+ content = local.content_hash
51
+ }
52
53
54
0 commit comments