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
if ! gem push --key="$KEY" --host "$GEM_HOST" "$GEM_FILE" >push.out; then
gemerr=$?
[...]
exit $gemerr
fi
Always return 0:
if ! gem push boop; then echo $?; fi # File doesn't exist, exit state is 0
ERROR: While executing gem ... (Gem::Package::FormatError)
No such file or directory @ rb_sysopen - boop
0
This causes the action to pass when it should fail, see:
The lines:
Always return 0:
This causes the action to pass when it should fail, see:
The text was updated successfully, but these errors were encountered: