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

3
dist/index.js vendored
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;