Skip to content

Commit

Permalink
Use unprotected key for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelbl committed Apr 20, 2024
1 parent c12a2d2 commit 4853282
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,11 @@ jobs:
website: jdk.java.net
release: 22
version: latest
- name: Configure GPG key
- name: Configure unit test GPG key
run: |
gpg --version
echo "Encoded key length: ${#GPG_SIGNING_KEY}"
echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --import
echo -n "$UNIT_TEST_SIGNING_KEY" | base64 --decode | gpg --import
env:
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
UNIT_TEST_SIGNING_KEY: ${{ env.UNIT_TEST_SIGNING_KEY }}
shell: bash
- name: Build java-does-usb
run: ./mvnw $MAVEN_ARGS -DskipTests clean install javadoc:javadoc
Expand Down

0 comments on commit 4853282

Please sign in to comment.