Skip to content

Commit

Permalink
chore(scripts): fix bug in release scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
FantasticFiasco authored Apr 3, 2024
1 parent 85c3907 commit 162e362
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/create-release.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const createRelease = async ({github, context}) => {
const repo = context.repo.repo;
const tag_name = context.ref.replace(/refs\/tags\//, '');

const res = github.rest.repos.createRelease({
const res = await github.rest.repos.createRelease({
owner,
repo,
tag_name,
Expand Down

0 comments on commit 162e362

Please sign in to comment.