mirror of
https://github.com/actions/download-artifact.git
synced 2025-07-24 23:48:29 +02:00
Download artifact relative to root folder
The new version (V2) breaks existing workflows because it changed its default behavior of downloading artifact relative to the root folder. This PR should fix this issue and it is compatible with version 1.0.0. Closes #30
This commit is contained in:
parent
1de1dea89c
commit
8a017e9f5e
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ async function run(): Promise<void> {
|
|||
} else {
|
||||
// download a single artifact
|
||||
const downloadOptions = {
|
||||
createArtifactFolder: false
|
||||
createArtifactFolder: true
|
||||
}
|
||||
const downloadResponse = await artifactClient.downloadArtifact(
|
||||
name,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue