diff --git a/.github/workflows/gh-hosted-eclipse-distro-build.yml b/.github/workflows/gh-hosted-eclipse-distro-build.yml index 5ab334f40..6f6672739 100644 --- a/.github/workflows/gh-hosted-eclipse-distro-build.yml +++ b/.github/workflows/gh-hosted-eclipse-distro-build.yml @@ -1,7 +1,7 @@ name: Eclipse Distro STS Build (GitHub Hosted) on: - workflow_dispatch: + workflow_call: inputs: eclipse_profile: description: Eclipse profile 'e428' etc @@ -82,7 +82,7 @@ jobs: run: | cd eclipse-distribution KEYCHAIN=$RUNNER_TEMP/app-signing.keychain-db - ./mvnw --batch-mode -U clean install -P${{ inputs.eclipse_profile }} -P${{ inputs.build_type }} -Pgitactions -Pgpg.sign -Dsigning.skip=true -Dmaven.repo.local=~/.m2/repository-signed -Dhttpclient.retry-max=20 -Dmaven.test.skip=true -Declipse.p2.mirrors=false -Dtycho.localArtifacts=ignore -Ds3service.https-only=true -Dp2.replaceQualifier=true -Dorg.eclipse.ecf.provider.filetransfer.httpclient.retrieve.readTimeout=1200000 -Dorg.eclipse.equinox.p2.transport.ecf.retry=5 -Dskip.eclipserun.proxies=false -Dskip.osx.signing=true -Dskip.win.signing=true -Dskip.osx.notarizing=true -Dtycho.equinox.resolver.uses=true + ./mvnw --batch-mode -U clean deploy -P${{ inputs.eclipse_profile }} -P${{ inputs.build_type }} -Pgitactions -Pgpg.sign -Dsigning.skip=true -Dmaven.repo.local=~/.m2/repository-signed -Dhttpclient.retry-max=20 -Dmaven.test.skip=true -Declipse.p2.mirrors=false -Dtycho.localArtifacts=ignore -Ds3service.https-only=true -Dp2.replaceQualifier=true -Dorg.eclipse.ecf.provider.filetransfer.httpclient.retrieve.readTimeout=1200000 -Dorg.eclipse.equinox.p2.transport.ecf.retry=5 -Dskip.eclipserun.proxies=false -Dskip.osx.signing=true -Dskip.win.signing=true -Dskip.osx.notarizing=true -Dtycho.equinox.resolver.uses=true - uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce with: name: win-zips-${{ github.run_id }}.${{ github.run_attempt }} diff --git a/.github/workflows/self-hosted-eclipse-distro-build.yml b/.github/workflows/self-hosted-eclipse-distro-build.yml index b1e26572b..978bba8fc 100644 --- a/.github/workflows/self-hosted-eclipse-distro-build.yml +++ b/.github/workflows/self-hosted-eclipse-distro-build.yml @@ -1,7 +1,7 @@ name: Eclipse Distro STS Build (Self Hosted) on: - workflow_call: + workflow_dispatch: inputs: eclipse_profile: description: Eclipse profile 'e428' etc diff --git a/.github/workflows/snapshot-e427-eclipse-distro-build.yml b/.github/workflows/snapshot-e427-eclipse-distro-build.yml index 477b548e1..d640819a1 100644 --- a/.github/workflows/snapshot-e427-eclipse-distro-build.yml +++ b/.github/workflows/snapshot-e427-eclipse-distro-build.yml @@ -17,7 +17,7 @@ on: jobs: e427-distro: # if: ${{ github.event.workflow_run.conclusion == 'success' }} - uses: ./.github/workflows/self-hosted-eclipse-distro-build.yml + uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml with: eclipse_profile: 'e427' build_type: 'snapshot' diff --git a/.github/workflows/snapshot-e428-eclipse-distro-build.yml b/.github/workflows/snapshot-e428-eclipse-distro-build.yml index 1bff5a861..fa9595e9d 100644 --- a/.github/workflows/snapshot-e428-eclipse-distro-build.yml +++ b/.github/workflows/snapshot-e428-eclipse-distro-build.yml @@ -17,7 +17,7 @@ on: jobs: e428-distro: # if: ${{ github.event.workflow_run.conclusion == 'success' }} - uses: ./.github/workflows/self-hosted-eclipse-distro-build.yml + uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml with: eclipse_profile: 'e428' build_type: 'snapshot' diff --git a/.github/workflows/snapshot-e429-eclipse-distro-build.yml b/.github/workflows/snapshot-e429-eclipse-distro-build.yml index ec95e5c74..9f72d0780 100644 --- a/.github/workflows/snapshot-e429-eclipse-distro-build.yml +++ b/.github/workflows/snapshot-e429-eclipse-distro-build.yml @@ -15,7 +15,7 @@ on: jobs: e429-distro: # if: ${{ github.event.workflow_run.conclusion == 'success' }} - uses: ./.github/workflows/self-hosted-eclipse-distro-build.yml + uses: ./.github/workflows/gh-hosted-eclipse-distro-build.yml with: eclipse_profile: 'e429' build_type: 'snapshot'