mirror of
https://github.com/actions/download-artifact.git
synced 2025-07-24 23:48:29 +02:00
Update README with compatibilty differences between v1 and v2
This commit is contained in:
parent
6849460513
commit
7df5120d6b
1 changed files with 16 additions and 0 deletions
16
README.md
16
README.md
|
@ -44,6 +44,22 @@ steps:
|
|||
run: ls -R
|
||||
working-directory: path/to/artifact
|
||||
```
|
||||
|
||||
## Compatibility between `v1` and `v2`
|
||||
|
||||
When using `download-artifact@v1`, a directory denoted by the name of the artifact would be created. All of the contents would ne downloaded to this directory.
|
||||
```
|
||||
path/to/artifact/
|
||||
my-artifact/
|
||||
... contents of my-artifact
|
||||
```
|
||||
|
||||
With `v2`, there is no longer an extra directory that is created. All the contents are downloaded to the current working directory or to `path` if specified.
|
||||
```
|
||||
path/to/artifact/
|
||||
... contents of my-artifact
|
||||
```
|
||||
|
||||
# Download All Artifacts
|
||||
|
||||
If the `name` input parameter is not provided, all artifacts will be downloaded. To differentiate between downloaded artifacts, a directory denoted by the artifacts name will be created for each individual artifact.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue