mirror of
https://github.com/actions/download-artifact.git
synced 2024-11-09 23:22:44 +00:00
DownloadArtifact
This commit is contained in:
parent
e9ef242655
commit
eb1cfa0ac2
1 changed files with 9 additions and 0 deletions
|
@ -14,3 +14,12 @@ outputs:
|
||||||
runs:
|
runs:
|
||||||
using: 'node16'
|
using: 'node16'
|
||||||
main: 'dist/index.js'
|
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