Skip to content

Commit

Permalink
Fix extended services release jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigonull committed Sep 11, 2024
1 parent a193bb6 commit ca65cd7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release_build_extended_services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,12 +189,13 @@ jobs:
- name: "Setup Maven settings file"
shell: bash
run: |
if [[ ${{ runner.os == 'Windows' }} ]]; then
if [ ${{ runner.os == 'Windows' }} ]; then
SETTINGS_FILE_PATH=${{ github.workspace }}\.m2\settings.xml
else
SETTINGS_FILE_PATH=${{ github.workspace }}/.m2/settings.xml
fi
pnpm -r exec 'bash' '-c' 'echo --settings=$SETTINGS_FILE_PATH >> .mvn/maven.config'
echo $SETTINGS_FILE_PATH
pnpm -r exec 'bash' '-c' 'echo --settings=test.xml >> .mvn/maven.config'
- name: "Bootstrap"
id: bootstrap
Expand Down

0 comments on commit ca65cd7

Please sign in to comment.