From 60868f60282fefce3a681130748a452c34a139bb Mon Sep 17 00:00:00 2001 From: Luc Georges Date: Thu, 9 Nov 2023 09:06:31 +0100 Subject: [PATCH] fix(ci): use `matrix.repo.name` in workflow dispatch branch --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8d168cc..33b4220 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -82,7 +82,7 @@ jobs: API_TOKEN: ${{ secrets.API_TOKEN }} - name: Run testbed - run: 'cargo run --bin testbed -r -- --api-token $API_TOKEN -f ${{ matrix.repo }} -p ${{ matrix.repo.parallel }}' + run: 'cargo run --bin testbed -r -- --api-token $API_TOKEN -f ${{ matrix.repo.name }} -p ${{ matrix.repo.parallel }}' if: github.event_name == 'workflow_dispatch' env: API_TOKEN: ${{ secrets.API_TOKEN }}