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
I noticed that the implicit get after a put for my snapshot artifacts were breaking. I did some digging and the reason was that the implicit get step was looking for the snapshot version artifacts from the release_url. This is due to a typo in the in script for checking whether a version is a snapshot version.
I noticed that the implicit
get
after aput
for mysnapshot
artifacts were breaking. I did some digging and the reason was that the implicitget
step was looking for the snapshot version artifacts from therelease_url
. This is due to a typo in thein
script for checking whether a version is a snapshot version.in
script uses an&&
https://github.com/patrickcrocker/maven-resource/blob/master/assets/in#L89
out
script uses an||
which is the correct behavior.https://github.com/patrickcrocker/maven-resource/blob/master/assets/out#L106
I fixed my pipeline scripts to use
1.3.2
instead oflatest
for now. Thanks again for your great work!The text was updated successfully, but these errors were encountered: