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
To avoid pollution of the OProject Git repository history the CI is deploying to Matthew's EOS area during development. Once things are mostly settled the CI should switch back to deploying to the OProject GitHub page.
To do this, the following needs to replace the current code in the deploy stage in the YAML:
name: Push draft to OProject Websitecommand: | echo -e "Host *\n\tStrictHostKeyChecking no" >> ~/.ssh/config cd .. git clone [email protected]:oprojects/oprojects.github.io.git cd oprojects.github.io/cwp git config user.name "Omar Zapata" git config user.email "Omar.Zapata[here is a thingy to keep email crawlers away]cern.ch" cp ../../project/HSF_ML_CWP.pdf ml-cwp.pdf git add ml-cwp.pdf if [[ ! -z $CIRCLE_PULL_REQUEST ]]; then git commit -m "[$(date -u '+%Y-%m-%d %H:%M')] Update CWP draft from iml-wg/cwp PR${CIRCLE_PULL_REQUEST##*/}" git push origin master else git commit -m "[$(date -u '+%Y-%m-%d %H:%M')] Update CWP draft from iml-wg/cwp" git push origin master echo "### File viewable at: https://oproject.org/cwp/" fi
The text was updated successfully, but these errors were encountered:
To avoid pollution of the OProject Git repository history the CI is deploying to Matthew's EOS area during development. Once things are mostly settled the CI should switch back to deploying to the OProject GitHub page.
To do this, the following needs to replace the current code in the
deploy
stage in the YAML:The text was updated successfully, but these errors were encountered: