Skip to content

Commit

Permalink
workflows: fix typing mistakes
Browse files Browse the repository at this point in the history
This patch fixes a few typos that were merged in the previous workflow
PR. The typos resulted in variables not being passed between steps and
final test submission step failing because of the missing variable.

Signed-off-by: Milosz Wasilewski <[email protected]>
  • Loading branch information
mwasilew authored and ndechesne committed Jan 14, 2025
1 parent 4c20a74 commit bd2261c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jobs:
needs: build
secrets: inherit
with:
url: ${{ needs.build.outputs.artifact_url }}
url: ${{ needs.build.outputs.artifacts_url }}
2 changes: 1 addition & 1 deletion .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
test:
uses: ./.github/workflows/test.yaml
uses: ./.github/workflows/test.yml
secrets: inherit
if: ${{ github.event.workflow_run.conclusion == 'success' }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
needs: prepare-job-list
runs-on: ubuntu-latest
strategy:
matrix: ${{ fromJson(needs.retrieve-job-list.outputs.jobmatrix) }}
matrix: ${{ fromJson(needs.prepare-job-list.outputs.jobmatrix) }}
steps:
- name: Clone repository
uses: actions/checkout@v4
Expand Down

0 comments on commit bd2261c

Please sign in to comment.