|
6 | 6 | - "v*" |
7 | 7 | schedule: |
8 | 8 | - cron: "0 13 * * 0" |
| 9 | + workflow_dispatch: |
| 10 | + inputs: |
| 11 | + standalone_branch_suffix: |
| 12 | + description: 'Suffix of the branch on standalone' |
| 13 | + required: false |
| 14 | + default: '.pre0' |
9 | 15 |
|
10 | 16 | #┌───────────── minute (0 - 59) |
11 | 17 | #│ ┌───────────── hour (0 - 23) |
@@ -55,14 +61,14 @@ jobs: |
55 | 61 | python_versions: '["3.7", "3.8", "3.9", "3.10"]' |
56 | 62 | wheel: true |
57 | 63 | wheelhouse: true |
58 | | - standalone_suffix: ".pre0" |
| 64 | + standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }} |
59 | 65 | secrets: inherit |
60 | 66 |
|
61 | 67 | docs: |
62 | 68 | uses: ./.github/workflows/docs.yml |
63 | 69 | with: |
64 | 70 | ANSYS_VERSION: "232" |
65 | | - standalone_suffix: ".pre0" |
| 71 | + standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }} |
66 | 72 | event_name: ${{ github.event_name }} |
67 | 73 | secrets: inherit |
68 | 74 |
|
|
71 | 77 | with: |
72 | 78 | ANSYS_VERSION: "232" |
73 | 79 | python_versions: '["3.7", "3.8", "3.9", "3.10"]' |
74 | | - standalone_suffix: ".pre0" |
| 80 | + standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }} |
75 | 81 | secrets: inherit |
76 | 82 |
|
77 | 83 | retro_231: |
@@ -106,7 +112,7 @@ jobs: |
106 | 112 | uses: ./.github/workflows/pydpf-post.yml |
107 | 113 | with: |
108 | 114 | ANSYS_VERSION: "232" |
109 | | - standalone_suffix: ".pre0" |
| 115 | + standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }} |
110 | 116 | secrets: inherit |
111 | 117 |
|
112 | 118 | pydpf-post_231: |
@@ -134,14 +140,14 @@ jobs: |
134 | 140 | name: "gate" |
135 | 141 | uses: ./.github/workflows/gate.yml |
136 | 142 | with: |
137 | | - standalone_suffix: ".pre0" |
| 143 | + standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }} |
138 | 144 | secrets: inherit |
139 | 145 |
|
140 | 146 | docker_tests: |
141 | 147 | name: "Build and Test on Docker" |
142 | 148 | uses: ./.github/workflows/test_docker.yml |
143 | 149 | with: |
144 | | - standalone_suffix: ".pre0" |
| 150 | + standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }} |
145 | 151 | secrets: inherit |
146 | 152 |
|
147 | 153 | draft_release: |
|
0 commit comments