Skip to content

Commit

Permalink
Set boostorg commit name in github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
ned14 committed Dec 15, 2020
1 parent 90675af commit b8ec922
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/make_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@ jobs:
tar xf hugo.tar.gz -C hugo_bin;
fi
ls -l hugo_bin
ls -l $HOME/.ssh
git config --global push.default simple
git config --global user.name "Jenkins nedprod CI"
git config --global user.email "foo@nowhere"
export PATH=$PATH:`pwd`/hugo_bin
pip install --user gitpython
git remote add outcome https://github.com/ned14/outcome
Expand Down Expand Up @@ -143,8 +147,8 @@ jobs:
git add . || true
cd ../..
git commit -a -m "CI regenerates Boost.Outcome docs" || true
git push https://jenkins-nedprod:$JENKINS_NEDPROD_PASSWORD@github.com/boostorg/outcome master || true
git push https://jenkins-nedprod:$JENKINS_NEDPROD_PASSWORD@github.com/boostorg/outcome develop || true
git push git@github.com:boostorg/outcome.git master || true
git push git@github.com:boostorg/outcome.git develop || true
cd doc
rm -rf html
git clone -b gh-pages --single-branch https://github.com/boostorg/outcome html
Expand All @@ -153,5 +157,5 @@ jobs:
cd ../html
git add . || true
git commit -a -m "CI regenerates Boost.Outcome docs" || true
git push -f https://jenkins-nedprod:$JENKINS_NEDPROD_PASSWORD@github.com/boostorg/outcome gh-pages
git push -f git@github.com:boostorg/outcome.git gh-pages
cd ../..

0 comments on commit b8ec922

Please sign in to comment.