mirror of
https://github.com/actions/download-artifact.git
synced 2024-11-09 18:53:33 -05:00
Update README.md
This commit is contained in:
parent
0e2e127b05
commit
e2f5e37059
1 changed files with 4 additions and 4 deletions
|
@ -9,9 +9,9 @@ See [action.yml](action.yml)
|
|||
Basic (upload current working directory):
|
||||
```yaml
|
||||
actions:
|
||||
- uses: actions/checkout@latest
|
||||
- uses: actions/checkout@master
|
||||
|
||||
- uses: actions/download-artifact@latest
|
||||
- uses: actions/download-artifact@master
|
||||
with:
|
||||
name: my-artifact
|
||||
|
||||
|
@ -22,9 +22,9 @@ Download to specific directory:
|
|||
```yaml
|
||||
|
||||
actions:
|
||||
- uses: actions/checkout@latest
|
||||
- uses: actions/checkout@master
|
||||
|
||||
- uses: actions/download-artifact@latest
|
||||
- uses: actions/download-artifact@master
|
||||
with:
|
||||
name: my-artifact
|
||||
path: path/to/artifact
|
||||
|
|
Loading…
Reference in a new issue