Skip to content

Commit

Permalink
Really fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn3 committed Mar 24, 2023
1 parent 24f16ba commit dae01b9
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/actions/github-release/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,11 @@ async function runOnce() {
console.log("ERROR: ", e);
core.info(`creating dev tag`);
try {
await octokit.rest.git.createTag({
await octokit.rest.git.createRef({
owner,
repo,
tag: 'dev',
message: 'dev release',
object: sha,
type: 'commit',
ref: 'tags/dev',
sha,
});
} catch (e) {
// we might race with others, so assume someone else has created the
Expand Down

0 comments on commit dae01b9

Please sign in to comment.