generated from JetBrains/intellij-platform-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 7
39 lines (35 loc) · 1.02 KB
/
build-branches.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Build all branches (!main)
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
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
##todo: maybe we want to run plugin verifier on every commit to branch ?
# plugin-verifier-workflow:
# strategy:
# matrix:
# profile: [ p231, p232, p233, p241, p242 ]
# uses: ./.github/workflows/plugin-verifier-workflow.yml
# with:
# build-profile: ${{ matrix.profile }}
# ref-name: ${{ github.ref_name }}
# secrets: inherit