Update Package

This commit is contained in:
J.P. Krauss
2026-03-21 07:15:34 -07:00
parent c6c0c1709a
commit fad97e6094
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -48206,10 +48206,11 @@ async function run() {
*/
async function createOrGetRelease(client, owner, repo, body) {
try {
console.log(`Checking for existing release at ${encodeURIComponent(body.tag)}`);
let release = await client.repository.repoGetReleaseByTag({
owner: owner,
repo: repo,
tag: body.tag_name,
tag: encodeURIComponent(body.tag_name),
})
const release_id = release.id;
let target_commitish = release.target_commitish;
+1
View File
@@ -84,6 +84,7 @@
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.0.2.tgz",
"integrity": "sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==",
"peer": true,
"dependencies": {
"@octokit/auth-token": "^4.0.0",
"@octokit/graphql": "^7.0.0",