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
When the release script does a git push (twice, in fact), then this currently requires a user password, leading to password prompts if you don't use SSH or a credential store.
Just use the access token we have anyway to avoid that!
Basically, just push to https://$USER:[email protected]/$REPO, where we just have to extract $USER from $REPO, which is of the form USERNAME/PKGNAME.
The text was updated successfully, but these errors were encountered:
When the
release
script does agit push
(twice, in fact), then this currently requires a user password, leading to password prompts if you don't use SSH or a credential store.Just use the access token we have anyway to avoid that!
Basically, just push to
https://$USER:[email protected]/$REPO
, where we just have to extract$USER
from$REPO
, which is of the formUSERNAME/PKGNAME
.The text was updated successfully, but these errors were encountered: