We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 099f380 commit 309a005Copy full SHA for 309a005
1 file changed
.github/workflows/CI.yml
@@ -19,7 +19,9 @@ jobs:
19
- uses: actions/checkout@v4
20
- id: set-matrix
21
run: |
22
- echo "matrix={\"node\":[$(python getter.py)]}" >> $GITHUB_OUTPUT
+ set -e
23
+ NODES=$(python getter.py)
24
+ echo "matrix={\"node\":[${NODES}]}" >> "$GITHUB_OUTPUT"
25
- name: "Set Up Julia"
26
uses: julia-actions/setup-julia@v2
27
with:
@@ -85,7 +87,7 @@ jobs:
85
87
- name: Upload new notebook
86
88
uses: actions/upload-artifact@v4
89
- name: ${{ matrix.node }}
90
+ name: ${{ replace(matrix.node, '/', '_') }}
91
path: notebooks/*.ipynb
92
retention-days: 7
93
- name: Notify Slack Action
0 commit comments