Skip to content

Commit

Permalink
Fix a bug where the automatic release did not include the JavaDoc and…
Browse files Browse the repository at this point in the history
… compiled JAR
  • Loading branch information
BjoernLoetters committed Feb 1, 2025
1 parent 6a8394b commit 03f200f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
run: mvn -pl core clean test -Dgpg.skip=true

- name: Build JAR-File
run: mvn -pl core clean package -DskipTests -Dgpg.skip=true
run: mvn -pl core package -DskipTests -Dgpg.skip=true

- name: Generate Sources JAR
run: mvn -pl core clean source:jar -DskipTests -Dgpg.skip=true
run: mvn -pl core source:jar -DskipTests -Dgpg.skip=true

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

0 comments on commit 03f200f

Please sign in to comment.