You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
skaffold build --dry-run , remember which tag is generated
cat << EOF > cmd/kodata/test.txt
test 2
EOF
skaffold build --dry-run
Expected different tag, actual is same.
I understand this can be bypassed by specifying dependencies, but that IMO would somewhat defeat the purpose of having inputDigest in the first place (which is supposed to be only changed when actually used sources are changed, but for this to work we would have to manually specify all reachable go packages).
The text was updated successfully, but these errors were encountered:
If configured inputDigest and ko builder, digest is not calculated correctly.
Expected behavior
When files are present in
cmd/kodata
, changing them should result in a new tag.Actual behavior
Tag is not changing.
Information
Steps to reproduce the behavior
mkdir skaffold-bug
cd skaffold-bug
mkdir cmd
mkdir cmd/kodata
skaffold build --dry-run
, remember which tag is generatedskaffold build --dry-run
Expected different tag, actual is same.
I understand this can be bypassed by specifying
dependencies
, but that IMO would somewhat defeat the purpose of having inputDigest in the first place (which is supposed to be only changed when actually used sources are changed, but for this to work we would have to manually specify all reachable go packages).The text was updated successfully, but these errors were encountered: