Skip to content

Commit c2cb3c5

Browse files
committed
fix: replace matrix values in sync-demo to account for previous simplification in internal nox session
1 parent eca180f commit c2cb3c5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/sync-demos.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
demo:
21-
- { name: "robust-python-demo", session_modifier: "no-rust" }
22-
- { name: "robust-maturin-demo", session_modifier: "rust" }
20+
demo_name:
21+
- "robust-python-demo"
22+
- "robust-maturin-demo"
2323
steps:
2424
- name: Checkout Template
2525
uses: actions/checkout@v4
@@ -30,8 +30,8 @@ jobs:
3030
- name: Checkout Demo
3131
uses: actions/checkout@v4
3232
with:
33-
repository: "${{ github.repository_owner }}/${{ matrix.demo.name }}"
34-
path: ${{ matrix.demo.name }}
33+
repository: "${{ github.repository_owner }}/${{ matrix.demo_name }}"
34+
path: ${{ matrix.demo_name }}
3535
ref: develop
3636

3737
- name: Set up uv
@@ -44,4 +44,4 @@ jobs:
4444

4545
- name: Update Demo
4646
working-directory: "${{ github.workspace }}/cookiecutter-robust-python"
47-
run: "uvx nox -s 'update-demo(${{ matrix.demo.session_modifier }})' -- --branch-override ${{ github.head_ref }}"
47+
run: "uvx nox -s 'update-demo(${{ matrix.demo_name }})' -- --branch-override ${{ github.head_ref }}"

0 commit comments

Comments
 (0)