mirror of
https://github.com/actions/download-artifact.git
synced 2024-11-09 15:12:44 +00:00
Update README for semantic versioning
This commit is contained in:
parent
e76b5a2383
commit
2e2f4508ba
1 changed files with 4 additions and 4 deletions
|
@ -11,9 +11,9 @@ See [action.yml](action.yml)
|
|||
Basic (download to current working directory):
|
||||
```yaml
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- uses: actions/checkout@v1
|
||||
|
||||
- uses: actions/download-artifact@master
|
||||
- uses: actions/download-artifact@v1
|
||||
with:
|
||||
name: my-artifact
|
||||
|
||||
|
@ -24,9 +24,9 @@ Download to specific directory:
|
|||
```yaml
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- uses: actions/checkout@v1
|
||||
|
||||
- uses: actions/download-artifact@master
|
||||
- uses: actions/download-artifact@v1
|
||||
with:
|
||||
name: my-artifact
|
||||
path: path/to/artifact
|
||||
|
|
Loading…
Reference in a new issue