mirror of
https://github.com/actions/download-artifact.git
synced 2024-11-10 07:32:42 +00:00
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
|
import * as core from '@actions/core'
|
||
|
import * as artifact from '@actions/artifact'
|
||
|
import {Inputs} from './constants'
|
||
|
|
||
|
async function run(): Promise<void> {
|
||
|
try {
|
||
|
const name = core.getInput(Inputs.Name, {required: false})
|
||
|
const path = core.getInput(Inputs.Path, {required: false})
|
||
|
|
||
|
const artifactClient = artifact.create()
|
||
|
if (!name) {
|
||
|
// download all artifacts
|
||
|
const downloadResponse = await artifactClient.downloadAllArtifacts(path)
|
||
|
core.info(`There were ${downloadResponse.length} artifacts downloaded`)
|
||
|
for (const artifact of downloadResponse) {
|
||
|
core.info(
|
||
|
`Artifact ${artifact.artifactName} was downloaded to ${artifact.downloadPath}`
|
||
|
)
|
||
|
}
|
||
|
} else {
|
||
|
// download a single artifact
|
||
|
const downloadOptions = {
|
||
|
createArtifactFolder: false
|
||
|
}
|
||
|
const downloadResponse = await artifactClient.downloadArtifact(
|
||
|
name,
|
||
|
path,
|
||
|
downloadOptions
|
||
|
)
|
||
|
core.info(
|
||
|
`Artifact ${downloadResponse.artifactName} was downloaded to ${downloadResponse.downloadPath}`
|
||
|
)
|
||
|
}
|
||
|
core.info('Artifact download has finished successfully')
|
||
|
} catch (err) {
|
||
|
core.setFailed(err.message)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
run()
|