Skip to content

Commit

Permalink
Fix artifact arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
szapp committed Apr 19, 2024
1 parent 7e8ba9c commit 74044d5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export async function run(github: boolean = false): Promise<{ summary: string; a
artifactFiles.push(`./${parser.filename}-reference-table.json`)
}
const artifact = new DefaultArtifactClient()
await artifact.uploadArtifact('symbol-tables', artifactFiles, '', { retentionDays: 3 })
await artifact.uploadArtifact('symbol-tables', artifactFiles, '.', { retentionDays: 3 })
artifactFiles.forEach((file) => fs.unlinkSync(file))
}

Expand Down

0 comments on commit 74044d5

Please sign in to comment.