Fix extra root extra root directory if downloading single artifact on v4-beta
parent
896d1bb258
commit
54ed8ca4ec
File diff suppressed because it is too large
Load Diff
|
@ -40,10 +40,11 @@ async function run(): Promise<void> {
|
|||
)
|
||||
}
|
||||
|
||||
const isSingleArtifactDownload = !!inputs.name
|
||||
const artifactClient = artifact.create()
|
||||
let artifacts: artifact.Artifact[] = []
|
||||
|
||||
if (inputs.name) {
|
||||
if (isSingleArtifactDownload) {
|
||||
const {artifact: targetArtifact} = await artifactClient.getArtifact(
|
||||
inputs.name,
|
||||
inputs.runID,
|
||||
|
@ -81,7 +82,7 @@ async function run(): Promise<void> {
|
|||
|
||||
const downloadPromises = artifacts.map(artifact =>
|
||||
artifactClient.downloadArtifact(artifact.id, owner, repo, inputs.token, {
|
||||
path: path.join(resolvedPath, artifact.name)
|
||||
path: isSingleArtifactDownload? resolvedPath : path.join(resolvedPath, inputs.name)
|
||||
})
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue