This repository has been archived by the owner on Jan 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* github/build: verify javadoc validity * github/build: stop testing against JDK 8 * github/build: test against JDK 16 and 17-ea Drop testing against JDK 15 * github/deploy: remove graphviz * github.deploy: nexus username is not a secret * github/settings: nexus username is not a secret * github/deploy: publish javadoc To: https://kemitix.github.io/wiser-assertions/ * github/build: upgrade setup-java action to 2.1.0 * github/deploy: upgrade setup-java action to 2.1.0
- Loading branch information
Showing
3 changed files
with
14 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,11 +9,11 @@ jobs: | |
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: kamiazya/setup-graphviz@v1 | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v1 | ||
uses: actions/setup-java@v2.1.0 | ||
with: | ||
distribution: adopt | ||
java-version: 8 | ||
- name: Build with Maven | ||
run: mvn -B install | ||
|
@@ -34,7 +34,11 @@ jobs: | |
-B \ | ||
deploy | ||
env: | ||
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }} | ||
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }} | ||
GPG_KEYNAME: ${{ secrets.GPG_KEYNAME }} | ||
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | ||
- name: Publish Javadoc | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: gh-pages # The branch the action should deploy to. | ||
folder: target/apidocs # The folder the action should deploy. |