We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28bcdf4 commit 0e2f77bCopy full SHA for 0e2f77b
.github/workflows/maven-build.yml .github/workflows/maven-build-release.yml.github/workflows/maven-build.yml renamed to .github/workflows/maven-build-release.yml
@@ -34,3 +34,23 @@ jobs:
34
with:
35
name: hello-world-api
36
path: target/*.jar
37
+
38
+ - name: Generate changelog
39
+ id: changelog
40
+ uses: mikepenz/release-changelog-builder-action@v4
41
+ if: success() && github.event_name == 'push'
42
+ env:
43
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44
45
+ - name: Create Release
46
+ uses: softprops/action-gh-release@v1
47
48
+ with:
49
+ tag_name: v1.0.${{ github.run_number }}
50
+ name: Release v1.0.${{ github.run_number }}
51
+ body: ${{ steps.changelog.outputs.changelog }}
52
+ files: target/*.jar
53
+ draft: false
54
+ prerelease: false
55
56
0 commit comments