2 Commits

Author SHA1 Message Date
Akkuman
0a1d8705a2 docs: update README.md 2023-12-02 19:24:05 +08:00
Akkuman
1652635ed8 fix: for of loop 2023-12-02 19:16:47 +08:00
3 changed files with 5 additions and 5 deletions

View File

@@ -22,7 +22,7 @@ The following are optional as `step.with` keys
## Example usage
```yaml
uses: akkuman/gitea-release-action@v1.0.0
uses: akkuman/gitea-release-action@v1
env:
NODE_OPTIONS: '--experimental-fetch' # if nodejs < 18
with:

4
dist/index.js vendored
View File

@@ -40990,8 +40990,8 @@ async function uploadFiles(client, owner, repo, release_id, all_files) {
repo: repo,
id: release_id,
})
for (const filepath in all_files) {
for (const attachment in attachments) {
for (const filepath of all_files) {
for (const attachment of attachments) {
if (attachment.name === external_path_.basename(filepath)) {
await client.repository.repoDeleteReleaseAttachment({
owner: owner,

View File

@@ -103,8 +103,8 @@ async function uploadFiles(client, owner, repo, release_id, all_files) {
repo: repo,
id: release_id,
})
for (const filepath in all_files) {
for (const attachment in attachments) {
for (const filepath of all_files) {
for (const attachment of attachments) {
if (attachment.name === path.basename(filepath)) {
await client.repository.repoDeleteReleaseAttachment({
owner: owner,