-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Export IS_HOME for deploy #3837
Conversation
buildtools/deploy.sh
Outdated
@@ -8,28 +10,29 @@ fi | |||
|
|||
# Cloning gh-pages into a local temporary directory | |||
TMP=".build/ngeo-${GITHUB_USERNAME}-gh-pages" | |||
git clone --single-branch --branch gh-pages $(GIT_REMOTE_URL) $TMP | |||
git clone --single-branch --branch gh-pages ${GIT_REMOTE_URL} ${TMP} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like the GIT_REMOTE_URL is not exported.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should directly put the value "[email protected]:camptocamp/ngeo.git" here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I put is as befor by using GITHUB_USERNAME
=>
[email protected]:${GITHUB_USERNAME}/ngeo.git
:-)
No description provided.