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 5818d83 commit 36e393cCopy full SHA for 36e393c
.github/workflows/java.yaml
@@ -23,7 +23,9 @@ jobs:
23
java-version: '17'
24
25
- name: Configure Maven settings.xml
26
- run: echo "${{ secrets.MAVEN_SETTINGS }}" > ~/.m2/settings.xml
+ run: |
27
+ mkdir -p ~/.m2
28
+ echo "${{ secrets.MAVEN_SETTINGS_BASE64 }}" | base64 --decode > ~/.m2/settings.xml
29
30
- name: Build & Test metrics-core
31
working-directory: packages/java
0 commit comments