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 6652f1c commit 26c56eeCopy full SHA for 26c56ee
.github/workflows/release-3-build-and-publish-artifacts.yml
@@ -358,6 +358,9 @@ jobs:
358
gpg --batch --pinentry-mode loopback --export > /tmp/pubring.gpg
359
360
exec_process cd helm
361
+ # Prerequisite for reproducible helm packages: file modification time must be deterministic
362
+ # Works with helm since version 4.0.0
363
+ exec_process find polaris -exec touch -d "1980-01-01 00:00:00" {} +
364
exec_process helm package polaris --sign --key "." --keyring /tmp/secring.gpg --passphrase-file /tmp/passphrase
365
exec_process helm verify polaris-${version_without_rc}.tgz --keyring /tmp/pubring.gpg
366
0 commit comments