| 
									
										
										
										
											2019-06-24 14:38:44 -06:00
										 |  |  | # upload-artifact
 | 
					
						
							| 
									
										
										
										
											2019-07-23 15:24:56 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | This uploads artifacts from your build. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Usage
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | See [action.yml](action.yml) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-23 15:35:48 -04:00
										 |  |  | Basic: | 
					
						
							| 
									
										
										
										
											2019-07-23 15:24:56 -04:00
										 |  |  | ```yaml | 
					
						
							|  |  |  | actions: | 
					
						
							| 
									
										
										
										
											2019-07-23 15:31:14 -04:00
										 |  |  | - uses: actions/checkout@master | 
					
						
							| 
									
										
										
										
											2019-07-23 15:24:56 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | - run: mkdir -p path/to/artifact | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | - run: echo hello > path/to/artifact/world.txt | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-23 15:31:14 -04:00
										 |  |  | - uses: actions/upload-artifact@master | 
					
						
							| 
									
										
										
										
											2019-07-23 15:24:56 -04:00
										 |  |  |   with: | 
					
						
							|  |  |  |     name: my-artifact | 
					
						
							|  |  |  |     path: path/to/artifact | 
					
						
							|  |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # License
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The scripts and documentation in this project are released under the [MIT License](LICENSE) |