Test build against JDK 15 (#182)
* Test build against JDK 15 * deploy-sonatype - don't treat username as a secret * settings.xml - username is not a secret
This commit is contained in:
parent
d207fec8d5
commit
b9a315ea5a
3 changed files with 3 additions and 4 deletions
4
.github/settings.xml
vendored
4
.github/settings.xml
vendored
|
@ -3,12 +3,12 @@
|
|||
<servers>
|
||||
<server>
|
||||
<id>sonatype-nexus-snapshots</id>
|
||||
<username>${env.NEXUS_USERNAME}</username>
|
||||
<username>kemitix</username>
|
||||
<password>${env.NEXUS_PASSWORD}</password>
|
||||
</server>
|
||||
<server>
|
||||
<id>sonatype-nexus-staging</id>
|
||||
<username>${env.NEXUS_USERNAME}</username>
|
||||
<username>kemitix</username>
|
||||
<password>${env.NEXUS_PASSWORD}</password>
|
||||
</server>
|
||||
</servers>
|
||||
|
|
2
.github/workflows/build-maven.yml
vendored
2
.github/workflows/build-maven.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
java: [ 8, 11, 14 ]
|
||||
java: [ 8, 11, 15 ]
|
||||
steps:
|
||||
- uses: kamiazya/setup-graphviz@v1
|
||||
- uses: actions/checkout@v2
|
||||
|
|
1
.github/workflows/deploy-sonatype.yml
vendored
1
.github/workflows/deploy-sonatype.yml
vendored
|
@ -34,7 +34,6 @@ jobs:
|
|||
-B \
|
||||
deploy
|
||||
env:
|
||||
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
|
||||
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
|
||||
GPG_KEYNAME: ${{ secrets.GPG_KEYNAME }}
|
||||
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
|
||||
|
|
Loading…
Reference in a new issue