We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e51fb1f commit 240f258Copy full SHA for 240f258
.github/workflows/update_iwc.yml
@@ -22,9 +22,11 @@ jobs:
22
strategy:
23
matrix:
24
instance: >-
25
- ${{ (github.event_name == 'workflow_dispatch')
26
- && [github.event.inputs.instance]
27
- || ['galaxy-qa1.galaxy.cloud.e-infra.cz', 'usegalaxy.cz', 'galaxy-umsa.grid.cesnet.cz'] }}
+ ${{ fromJSON(
+ github.event_name == 'workflow_dispatch'
+ && format('["{0}"]', github.event.inputs.instance)
28
+ || '["galaxy-qa1.galaxy.cloud.e-infra.cz","usegalaxy.cz","galaxy-umsa.grid.cesnet.cz"]'
29
+ ) }}
30
steps:
31
- uses: actions/setup-python@v5
32
with:
0 commit comments