Skip to content

Commit

Permalink
Add generation of a source JAR to the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
BjoernLoetters committed Feb 1, 2025
1 parent eeca282 commit 7aacc93
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,11 @@ jobs:
- name: Build JAR-File
run: mvn -pl core clean package -DskipTests

- name: Generate JavaDoc
run: mvn -pl core javadoc:jar
- name: Generate JavaDoc JAR
run: mvn -pl core clean javadoc:jar -DskipTests

- name: Generate Sources JAR
run: mvn -pl core clean source:jar -DskipTests

- name: Upload Release
uses: marvinpinto/action-automatic-releases@latest
Expand Down

0 comments on commit 7aacc93

Please sign in to comment.