You've already forked gitea-release-action
mirror of
https://gitea.com/actions/gitea-release-action.git
synced 2025-08-13 12:44:36 +07:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
69c9a2be62 | |||
91415bf0a8 | |||
f6b3ef8321 |
2
dist/index.js
vendored
2
dist/index.js
vendored
@ -41022,7 +41022,7 @@ async function uploadFiles(client, owner, repo, release_id, all_files) {
|
|||||||
await client.repository.repoDeleteReleaseAttachment({
|
await client.repository.repoDeleteReleaseAttachment({
|
||||||
owner: owner,
|
owner: owner,
|
||||||
repo: repo,
|
repo: repo,
|
||||||
id: id,
|
id: release_id,
|
||||||
attachmentId: attachment.id,
|
attachmentId: attachment.id,
|
||||||
})
|
})
|
||||||
console.log(`Successfully deleted old release attachment ${attachment.name}`)
|
console.log(`Successfully deleted old release attachment ${attachment.name}`)
|
||||||
|
2
main.js
2
main.js
@ -135,7 +135,7 @@ async function uploadFiles(client, owner, repo, release_id, all_files) {
|
|||||||
await client.repository.repoDeleteReleaseAttachment({
|
await client.repository.repoDeleteReleaseAttachment({
|
||||||
owner: owner,
|
owner: owner,
|
||||||
repo: repo,
|
repo: repo,
|
||||||
id: id,
|
id: release_id,
|
||||||
attachmentId: attachment.id,
|
attachmentId: attachment.id,
|
||||||
})
|
})
|
||||||
console.log(`Successfully deleted old release attachment ${attachment.name}`)
|
console.log(`Successfully deleted old release attachment ${attachment.name}`)
|
||||||
|
Reference in New Issue
Block a user