Skip to content

Commit

Permalink
Issue-802: Release script return to previous branch
Browse files Browse the repository at this point in the history
This should simplify a release from a release branch in case a we need to select commits

Signed-off-by: l-1sqared <[email protected]>
  • Loading branch information
l-1squared committed Sep 8, 2023
1 parent 73aba84 commit 9f6081f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/publishAsciidoc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ cp -r build/docs/asciidoc/* userguide
git add userguide
git commit -m 'added userguide to gh-pages'
git push
git checkout -f master
git checkout -f -
2 changes: 1 addition & 1 deletion scripts/publishJGivenReports.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ cp -r jgiven-tests/build/reports/jgiven/html5/ jgiven-report/
git add jgiven-report/
git commit -m 'added generated jgiven report to gh-pages'
git push
git checkout -f master
git checkout -f -
2 changes: 1 addition & 1 deletion scripts/publishJGivenSnapshotReports.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ cp -r jgiven-tests/build/reports/jgiven/html5/ ${TARGET_DIR}
git add ${TARGET_DIR}
git commit -m 'added generated snapshot jgiven report to gh-pages'
git push
git checkout -f master
git checkout -f -
2 changes: 1 addition & 1 deletion scripts/publishJavadoc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ cp -r jgiven-core/build/docs/javadoc/* javadoc
git add javadoc
git commit -m 'added javadoc to gh-pages'
git push
git checkout -f master
git checkout -f -

0 comments on commit 9f6081f

Please sign in to comment.