mirror of
				https://github.com/actions/download-artifact.git
				synced 2025-10-31 09:23:40 +00:00 
			
		
		
		
	download-artifact
This downloads artifacts from your build.
Usage
See action.yml
Basic (upload current working directory):
actions:
- uses: actions/checkout@latest
- uses: actions/download-artifact@latest
  with:
    name: my-artifact
    
- run: cat my-artifact
Download to specific directory:
actions:
- uses: actions/checkout@latest
- uses: actions/download-artifact@latest
  with:
    name: my-artifact
    path: path/to/artifact
    
- run: cat path/to/artifact/my-artifact
License
The scripts and documentation in this project are released under the MIT License
					Languages
				
				
								
								
									TypeScript
								
								100%