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 3c4e78e commit 8c1f752
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release_build_extended_services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ jobs:
if: runner.os == 'Windows'
shell: pwsh
run: |
pnpm -r exec Add-Content .\mvn\maven.config '--settings=${{ github.workspace }}\.m2\settings.xml'
pnpm -r powershell "Add-Content .\mvn\maven.config '--settings=${{ github.workspace }}\.m2\settings.xml'"
- name: "Bootstrap"
id: bootstrap
Expand All @@ -217,7 +217,7 @@ jobs:

- name: "Setup Extended Services for macOS x86 artifacts"
id: macos_setup_artifact
if: ${{ runner.os == 'macOS' && runner.arch != 'arm64' && !inputs.dry_run }}
if: ${{ runner.os == 'macOS' && !inputs.dry_run }}
shell: bash
env:
RELEASE_CANDIDATE_VERSION: ${{ inputs.release_candidate_version }}
Expand All @@ -228,7 +228,7 @@ jobs:
zip $ARTIFACT_ZIP_FILE ./packages/extended-services/dist/darwin/Kogito.dmg
- name: "Sign Extended Services for macOS x86 artifact"
if: ${{ runner.os == 'macOS' && runner.arch != 'arm64' && !inputs.dry_run }}
if: ${{ runner.os == 'macOS' && !inputs.dry_run }}
shell: bash
env:
ARTIFACT_ZIP_FILE: ${{ steps.macos_setup_artifact.outputs.ARTIFACT_ZIP_FILE }}
Expand All @@ -237,7 +237,7 @@ jobs:
shasum -a 512 $ARTIFACT_ZIP_FILE > $ARTIFACT_ZIP_FILE.sha512
- name: "Upload Extended Services for macOS x86 artifact"
if: ${{ runner.os == 'macOS' && runner.arch != 'arm64' && !inputs.dry_run }}
if: ${{ runner.os == 'macOS' && !inputs.dry_run }}
shell: bash
env:
SVN_USERNAME: svn_dist_kie
Expand All @@ -255,7 +255,7 @@ jobs:
- name: "Setup Extended Services for Windows artifacts"
id: windows_setup_artifact
if: ${{ runner.os == 'Windows' && !inputs.dry_run }}
shell: pwsh
shell: bash
env:
RELEASE_CANDIDATE_VERSION: ${{ inputs.release_candidate_version }}
run: |
Expand All @@ -266,7 +266,7 @@ jobs:
- name: "Sign Extended Services for Windows artifact"
if: ${{ runner.os == 'Windows' && !inputs.dry_run }}
shell: pwsh
shell: bash
env:
ARTIFACT_ZIP_FILE: ${{ steps.windows_setup_artifact.outputs.ARTIFACT_ZIP_FILE }}
run: |
Expand All @@ -275,7 +275,7 @@ jobs:
- name: "Upload Extended Services for Windows artifact"
if: ${{ runner.os == 'Windows' && !inputs.dry_run }}
shell: pwsh
shell: bash
env:
SVN_USERNAME: svn_dist_kie
SVN_PASSWORD: ${{ secrets.svc-dist-kie-pass }}
Expand Down

0 comments on commit 8c1f752

Please sign in to comment.