Skip to content

Commit

Permalink
Fix release script (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronbembenek authored Dec 27, 2023
1 parent d6b60a9 commit 3050108
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions make_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,15 @@ mvn license:update-file-header
mvn com.spotify.fmt:fmt-maven-plugin:format
# Generate Javadocs
mvn javadoc:javadoc
git add src
git commit -allow-empty -m "Release commit."
git stash

# Update the Javadocs on the website
git checkout gh-pages
rm -rf apidocs
cp -r target/site/apidocs .
git add apidocs
git commit –allow-empty -m "Update Javadocs."
git commit -m "Update Javadocs."
git push

git checkout master
git stash pop

0 comments on commit 3050108

Please sign in to comment.