mirror of
https://github.com/actions/download-artifact
synced 2025-09-22 03:38:09 +00:00
Compare commits
4 commits
edcc5cda7a
...
c32861e8ae
Author | SHA1 | Date | |
---|---|---|---|
![]() |
c32861e8ae | ||
![]() |
abefc31eaf | ||
![]() |
ac43a6070a | ||
![]() |
eb1cfa0ac2 |
2 changed files with 11 additions and 0 deletions
|
@ -34,6 +34,8 @@ Now both methods are consistent:
|
|||
- **By name**: `name: my-artifact` → extracted to `path/` (unchanged)
|
||||
- **By ID**: `artifact-ids: 12345` → extracted to `path/` (updated - now direct)
|
||||
|
||||
Note: This change also applies to patterns that only match a single artifact.
|
||||
|
||||
## v4 - What's new
|
||||
|
||||
> [!IMPORTANT]
|
||||
|
|
|
@ -41,3 +41,12 @@ outputs:
|
|||
runs:
|
||||
using: 'node20'
|
||||
main: 'dist/index.js'
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: my-artifact
|
||||
|
||||
- name: Display structure of downloaded files
|
||||
run: ls -R
|
||||
|
|
Loading…
Reference in a new issue