Skip to content

Commit

Permalink
Fix release script
Browse files Browse the repository at this point in the history
  • Loading branch information
neerajprad committed Jan 29, 2025
1 parent 0608cc2 commit 9814f0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
const result = await github.rest.actions.createWorkflowDispatch({
owner: context.repo.owner,
repo: context.repo.repo,
workflow_id: 'unit_testing.yml',
workflow_id: 'unit_test.yml',
ref: context.sha
});
Expand All @@ -36,7 +36,7 @@ jobs:
const runs = await github.rest.actions.listWorkflowRuns({
owner: context.repo.owner,
repo: context.repo.repo,
workflow_id: 'unit_testing.yml',
workflow_id: 'unit_test.yml',
status: 'completed',
head_sha: context.sha
});
Expand Down

0 comments on commit 9814f0b

Please sign in to comment.