We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c12a2d2 commit 4853282Copy full SHA for 4853282
.github/workflows/continuous-integration.yaml
@@ -31,13 +31,11 @@ jobs:
31
website: jdk.java.net
32
release: 22
33
version: latest
34
- - name: Configure GPG key
+ - name: Configure unit test GPG key
35
run: |
36
- gpg --version
37
- echo "Encoded key length: ${#GPG_SIGNING_KEY}"
38
- echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --import
+ echo -n "$UNIT_TEST_SIGNING_KEY" | base64 --decode | gpg --import
39
env:
40
- GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
+ UNIT_TEST_SIGNING_KEY: ${{ env.UNIT_TEST_SIGNING_KEY }}
41
shell: bash
42
- name: Build java-does-usb
43
run: ./mvnw $MAVEN_ARGS -DskipTests clean install javadoc:javadoc
0 commit comments