Skip to content

Commit

Permalink
Fix run id param
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanlatr committed Nov 3, 2023
1 parent 3c93129 commit ac8a7a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pydoctor_primer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
const artifacts = await github.rest.actions.listWorkflowRunArtifacts({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: ${{ github.event.workflow_run.id }},
run_id: ${{ github.run_id }},
});
const [matchArtifact] = artifacts.data.artifacts.filter((artifact) =>
artifact.name == "pydoctor_primer_diffs");
Expand Down

0 comments on commit ac8a7a3

Please sign in to comment.