Sign on merge too
This commit is contained in:
parent
de116bd82e
commit
f89b476db8
|
|
@ -31,8 +31,16 @@ jobs:
|
||||||
server-id: ossrh
|
server-id: ossrh
|
||||||
server-username: ${{ secrets.OSSRH_USERNAME }}
|
server-username: ${{ secrets.OSSRH_USERNAME }}
|
||||||
server-password: ${{ secrets.OSSRH_PASSWORD }}
|
server-password: ${{ secrets.OSSRH_PASSWORD }}
|
||||||
|
|
||||||
|
- name: Configure GPG Key
|
||||||
|
run: |
|
||||||
|
echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --import
|
||||||
|
env:
|
||||||
|
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
|
||||||
|
|
||||||
- name: Build with Maven
|
- name: Build with Maven
|
||||||
run: mvn --batch-mode --update-snapshots verify
|
run: mvn --batch-mode --update-snapshots verify
|
||||||
|
|
||||||
- name: Upload coverage to Codecov
|
- name: Upload coverage to Codecov
|
||||||
uses: codecov/codecov-action@v2
|
uses: codecov/codecov-action@v2
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue