mirror of
				https://github.com/actions/download-artifact.git
				synced 2025-11-04 03:43:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			679 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			679 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
# download-artifact
 | 
						|
 | 
						|
This downloads artifacts from your build.
 | 
						|
 | 
						|
See also [upload-artifact](https://github.com/actions/upload-artifact).
 | 
						|
 | 
						|
# Usage
 | 
						|
 | 
						|
See [action.yml](action.yml)
 | 
						|
 | 
						|
Basic (download to current working directory):
 | 
						|
```yaml
 | 
						|
steps:
 | 
						|
- uses: actions/checkout@v1
 | 
						|
 | 
						|
- uses: actions/download-artifact@v1
 | 
						|
  with:
 | 
						|
    name: my-artifact
 | 
						|
    
 | 
						|
- run: cat my-artifact
 | 
						|
```
 | 
						|
 | 
						|
Download to specific directory:
 | 
						|
```yaml
 | 
						|
 | 
						|
steps:
 | 
						|
- uses: actions/checkout@v1
 | 
						|
 | 
						|
- uses: actions/download-artifact@v1
 | 
						|
  with:
 | 
						|
    name: my-artifact
 | 
						|
    path: path/to/artifact
 | 
						|
    
 | 
						|
- run: cat path/to/artifact
 | 
						|
```
 | 
						|
 | 
						|
# License
 | 
						|
 | 
						|
The scripts and documentation in this project are released under the [MIT License](LICENSE)
 |