Skip to content

Commit

Permalink
fix: oauth problem
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkey2011 committed Apr 17, 2021
1 parent 0bc368c commit f28aa6d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ else
fi

# Final repository
DEPLOY_REPO="https://${ACCESS_TOKEN}@github.com/${REPOSITORY_NAME}.git"
# https://github.com/jenkey2011/vuepress-deploy.git
# <access-token>:[email protected]
# DEPLOY_REPO="https://${ACCESS_TOKEN}@github.com/${REPOSITORY_NAME}.git"
DEPLOY_REPO="https://${ACCESS_TOKEN}:[email protected]/${REPOSITORY_NAME}.git"
# [email protected]:jenkey2011/vuepress-deploy.git
if [ "$TARGET_LINK" ]; then
DEPLOY_REPO="$TARGET_LINK"
fi
Expand Down

0 comments on commit f28aa6d

Please sign in to comment.