Skip to content

Commit

Permalink
[INTERNAL] Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bosob committed Oct 9, 2020
1 parent 71e8397 commit 3cc4484
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ jobs:
run: mvn -B -V package --file pom.xml -DskipTests -DskipITs -Dchecks.skip=true


- name: Generate Changelog
run: git log $(git describe --tags --abbrev=0)..HEAD --pretty=format:"%s" -i -E --grep="^\s*(\[FEATURE\]|\[FIX\])]" > .release_notes.txt
#run: git log $(git describe --tags --abbrev=0)..HEAD --pretty=format:"%s" -i -E --grep="^\s*(\[INTERNAL\]|\[FEATURE\]|\[FIX\]|\[DOC\])*(\[FEATURE\]|\[FIX\])]" > .release_notes.txt

- name: Create Release
id: create-release
uses: actions/create-release@v1
Expand All @@ -49,6 +53,7 @@ jobs:
with:
tag_name: ${{ github.event.inputs.release-version }}
release_name: Release ${{ github.event.inputs.release-version }}
body_path: .release_notes.txt

- name: Upload Release Asset JAR
id: upload-release-asset-jar
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ nbactions*.xml
.attach_pid*

# Release
.release_notes_*.txt
.release_notes.txt

0 comments on commit 3cc4484

Please sign in to comment.