mirror of
https://code.forgejo.org/forgejo/download-artifact.git
synced 2025-05-17 12:47:48 +02:00
better fallback for path and append aritfact name for mutli-download
This commit is contained in:
parent
24b1443a07
commit
727cfbe442
2 changed files with 9 additions and 2 deletions
|
@ -22,6 +22,10 @@ async function run(): Promise<void> {
|
|||
runID: parseInt(core.getInput(Inputs.RunID, {required: true}))
|
||||
}
|
||||
|
||||
if (!inputs.path) {
|
||||
inputs.path = process.env['GITHUB_WORKSPACE'] || process.cwd()
|
||||
}
|
||||
|
||||
if (inputs.path.startsWith(`~`)) {
|
||||
inputs.path = inputs.path.replace('~', os.homedir())
|
||||
}
|
||||
|
@ -77,7 +81,7 @@ async function run(): Promise<void> {
|
|||
|
||||
const downloadPromises = artifacts.map(artifact =>
|
||||
artifactClient.downloadArtifact(artifact.id, owner, repo, inputs.token, {
|
||||
path: resolvedPath
|
||||
path: path.join(resolvedPath, artifact.name)
|
||||
})
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue