Skip to content

Commit

Permalink
fix generate-javadoc.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
HamaWhiteGG committed Oct 7, 2023
1 parent 6e56882 commit 0de1917
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/generate-javadoc.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Generate Javadoc
name: Maven Generate Javadoc

on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "main" ]

Expand All @@ -20,7 +22,10 @@ jobs:
cache: maven

- name: Build with Maven
run: mvn -B test --file pom.xml
run: mvn clean install -DskipTests
with:
gpg_private_key: ${{ secrets.GPG_SECRET }}
gpg_passphrase: ${{ secrets.GPG_PASSWORD }}

- name: Build and generate Javadoc
run: mvn javadoc:javadoc
Expand Down

0 comments on commit 0de1917

Please sign in to comment.