26 lines
697 B
Text
26 lines
697 B
Text
|
# We aren't logged in at the moment, but GH_TOKEN will override the
|
||
|
# need to login. We are going to clear GH_TOKEN first to ensure no
|
||
|
# overrides are happening
|
||
|
|
||
|
# Copy $GH_TOKEN to a new env var
|
||
|
env LOGIN_TOKEN=$GH_TOKEN
|
||
|
|
||
|
# Remove GH_TOKEN env var so we don't fall back to it
|
||
|
env GH_TOKEN=''
|
||
|
|
||
|
# Login to the host by feeding the token to stdin
|
||
|
exec echo $LOGIN_TOKEN
|
||
|
stdin stdout
|
||
|
exec gh auth login --hostname=$GH_HOST --with-token --insecure-storage
|
||
|
|
||
|
# Check that we are logged in
|
||
|
exec gh auth status --hostname $GH_HOST
|
||
|
stdout $GH_HOST
|
||
|
|
||
|
# Logout of the host
|
||
|
exec gh auth logout --hostname $GH_HOST
|
||
|
stderr 'Logged out of'
|
||
|
|
||
|
# Check that we are logged out
|
||
|
! exec gh auth status --hostname $GH_HOST
|