Skip to content

Commit

Permalink
Merge branch 'main' into sebastienlevert/samples-re-home
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienlevert authored Jul 24, 2023
2 parents a69c71e + 7e608e4 commit 9e30787
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/uploadSpfxSolution.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if (process.argv.length < 4) {
}

const auth = process.argv[2];
const version = process.argv[3];
const version = 'v' + process.argv[3];
const repo = 'microsoft-graph-toolkit';
const owner = 'microsoftgraph';
const assetPath = 'packages/mgt-spfx/sharepoint/solution/mgt-spfx.sppkg';
Expand All @@ -34,8 +34,8 @@ const octokit = new Octokit({ auth });
await octokit.rest.repos.createRelease({
owner,
repo,
tag_name: 'v' + version,
name: 'v' + version,
tag_name: version,
name: version,
draft: true
})
).data;
Expand Down

0 comments on commit 9e30787

Please sign in to comment.