Commit 8fb2a00 1 parent 36b06dd commit 8fb2a00 Copy full SHA for 8fb2a00
File tree 2 files changed +4
-4
lines changed
.github/actions/setup-java-build
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,13 @@ runs:
26
26
- name : " Install ${{ inputs.maven-settings }}"
27
27
shell : bash
28
28
run : |
29
- mkdir -p $HOME /.m2
29
+ mkdir -p ~ /.m2
30
30
if [ -f "${{ inputs.maven-settings }}" ]; then
31
31
echo "Installing Maven settings file found in the repository: ${{ inputs.maven-settings }}"
32
- cp "${{ inputs.maven-settings }}" $HOME /.m2/settings.xml
32
+ cp "${{ inputs.maven-settings }}" ~ /.m2/settings.xml
33
33
else
34
34
echo "Maven settings file: ${{ inputs.maven-settings }} not found in the repository. Installing the default one"
35
- cp ${{ github.action_path }}/settings.xml $HOME /.m2/settings.xml
35
+ cp ${{ github.action_path }}/settings.xml ~ /.m2/settings.xml
36
36
fi
37
37
- name : " Set up Java"
38
38
uses : actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
Original file line number Diff line number Diff line change 1
- v8.14.0
1
+ v8.14.1
You can’t perform that action at this time.
0 commit comments