Skip to content

Commit

Permalink
Merge pull request #346 from kbst/test-do-promotion
Browse files Browse the repository at this point in the history
Fix actions script
  • Loading branch information
pst authored Sep 10, 2023
2 parents b54906a + 7722d67 commit f6668da
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,13 +134,13 @@ jobs:
github.rest.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
tag,
context.sha,
ref: tag,
sha: context.sha,
});
octokit.rest.actions.createWorkflowDispatch({
github.rest.actions.createWorkflowDispatch({
owner: context.repo.owner,
repo: context.repo.repo,
'promote.yml',
tag,
workflow_id: "promote.yml",
ref: tag,
});

0 comments on commit f6668da

Please sign in to comment.