Skip to content

Commit

Permalink
Install to Maven local for CI (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
twyatt committed Mar 26, 2021
1 parent ce9b679 commit c6dda94
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,20 @@ jobs:
- name: Check
run: ./gradlew $GRADLE_ARGS check jacocoTestReport

- name: Keyring
run: echo "${{ secrets.SIGNING_SECRET_KEY_RING }}" | base64 --decode > "$HOME/secring.gpg"

- name: Publish Locally
run: >-
./gradlew
$GRADLE_ARGS
--no-parallel
-PVERSION_NAME=unspecified
-Psigning.keyId="${{ secrets.SIGNING_KEY_ID }}"
-Psigning.password="${{ secrets.SIGNING_PASSWORD }}"
-Psigning.secretKeyRingFile="$HOME/secring.gpg"
installArchives
- name: Codecov
uses: codecov/codecov-action@v1
with:
Expand Down

0 comments on commit c6dda94

Please sign in to comment.