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 46b39e7 commit feb7a3eCopy full SHA for feb7a3e
1 file changed
.github/workflows/test.yml
@@ -25,7 +25,9 @@ jobs:
25
- name: Run AAA SDK tests
26
run: mvn -Dhere.token.endpoint.url=https://stg.account.api.here.com/oauth2/token -Dhere.access.key.id=${{ secrets.ACCESS_KEY_ID }} -Dhere.access.key.secret=${{ secrets.ACCESS_KEY_SECRET }} clean install
27
- name: Run JWT client assertion integration test
28
- if: ${{ secrets.JWT_PRIVATE_KEY != '' }}
+ if: ${{ env.JWT_PRIVATE_KEY != '' }}
29
+ env:
30
+ JWT_PRIVATE_KEY: ${{ secrets.JWT_PRIVATE_KEY }}
31
run: |
32
mvn test -pl here-oauth-client -Dtest=JwtClientAssertionIT \
33
-Dhere.token.endpoint.url=https://stg.account.api.here.com/oauth2/token \
0 commit comments