Skip to content

Commit

Permalink
now store changelog in archive
Browse files Browse the repository at this point in the history
  • Loading branch information
WIL PANNELL committed Jul 20, 2017
1 parent 934022d commit 92f8d3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .bluemix/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,19 @@ stages:
npm run dist
scripts/package.sh
git log -1 --pretty > changelog.txt
git log -1 --pretty > build/changelog.txt
git checkout integration
git pull origin integration
git merge dev1 --no-ff --log
git push origin integration
git checkout distribution
git pull origin distribution
cp -rf build/* .
rm -rf build
git add .
git commit -m "$(cat ./changelog.txt)"
git commit -m "$(cat build/changelog.txt)"
git push origin distribution
git checkout dev1
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
.idea/
.nyc_output/
bower_components/
build/
coverage/
dist/
game-of-life/
Expand Down

0 comments on commit 92f8d3c

Please sign in to comment.