Merge pull request #2591 from digma-ai/external-requests-handlers #723
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build main and Prepare Release draft | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build-workflow: | |
strategy: | |
matrix: | |
profile: [ p231, p232, p233, p241, p242, p243 ] | |
uses: ./.github/workflows/build-workflow.yml | |
with: | |
build-profile: ${{ matrix.profile }} | |
ref-name: ${{ github.ref_name }} | |
build-with-rider: false | |
secrets: inherit | |
## can do a double matrix for rider but then it's not clear in github which is the rider build. | |
build-workflow-with-rider: | |
strategy: | |
matrix: | |
profile: [ p231, p232, p233, p241, p242, p243 ] | |
uses: ./.github/workflows/build-workflow.yml | |
with: | |
build-profile: ${{ matrix.profile }} | |
ref-name: ${{ github.ref_name }} | |
build-with-rider: true | |
secrets: inherit | |
plugin-verifier-workflow: | |
strategy: | |
matrix: | |
profile: [ p231, p232, p233, p241, p242, p243 ] | |
uses: ./.github/workflows/plugin-verifier-workflow.yml | |
with: | |
build-profile: ${{ matrix.profile }} | |
ref-name: ${{ github.ref_name }} | |
secrets: inherit | |
prepare-release-draft: | |
needs: [ build-workflow,build-workflow-with-rider,plugin-verifier-workflow ] | |
if: github.event_name != 'pull_request' | |
uses: ./.github/workflows/release-draft.yml | |
secrets: inherit |