Merge branch 'master' into v1-release
This commit is contained in:
		
						commit
						a859ccd8ed
					
				
							
								
								
									
										12
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								README.md
									
									
									
									
									
								
							@ -3,7 +3,7 @@
 | 
				
			|||||||
This action allows you to select which files to upload to the just-tagged release.
 | 
					This action allows you to select which files to upload to the just-tagged release.
 | 
				
			||||||
It runs on all operating systems types offered by GitHub.
 | 
					It runs on all operating systems types offered by GitHub.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Input variables:
 | 
					## Input variables
 | 
				
			||||||
 | 
					
 | 
				
			||||||
You must provide:
 | 
					You must provide:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -24,8 +24,9 @@ Simple example:
 | 
				
			|||||||
name: Publish
 | 
					name: Publish
 | 
				
			||||||
 | 
					
 | 
				
			||||||
on:
 | 
					on:
 | 
				
			||||||
  create:
 | 
					  push:
 | 
				
			||||||
    tags:
 | 
					    tags:
 | 
				
			||||||
 | 
					      - '*'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
jobs:
 | 
					jobs:
 | 
				
			||||||
  build:
 | 
					  build:
 | 
				
			||||||
@ -55,11 +56,12 @@ Complex example with more operating systems:
 | 
				
			|||||||
name: Publish
 | 
					name: Publish
 | 
				
			||||||
 | 
					
 | 
				
			||||||
on:
 | 
					on:
 | 
				
			||||||
  create:
 | 
					  push:
 | 
				
			||||||
    tags:
 | 
					    tags:
 | 
				
			||||||
 | 
					      - '*'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
jobs:
 | 
					jobs:
 | 
				
			||||||
  build:
 | 
					  publish:
 | 
				
			||||||
    name: Publish for ${{ matrix.os }}
 | 
					    name: Publish for ${{ matrix.os }}
 | 
				
			||||||
    runs-on: ${{ matrix.os }}
 | 
					    runs-on: ${{ matrix.os }}
 | 
				
			||||||
    strategy:
 | 
					    strategy:
 | 
				
			||||||
@ -81,7 +83,7 @@ jobs:
 | 
				
			|||||||
        rust-version: stable
 | 
					        rust-version: stable
 | 
				
			||||||
    - uses: actions/checkout@v1
 | 
					    - uses: actions/checkout@v1
 | 
				
			||||||
    - name: Build
 | 
					    - name: Build
 | 
				
			||||||
      run: cargo build --release
 | 
					      run: cargo build --release --locked
 | 
				
			||||||
    - name: Upload binaries to release
 | 
					    - name: Upload binaries to release
 | 
				
			||||||
      uses: svenstaro/upload-release-action@v1-release
 | 
					      uses: svenstaro/upload-release-action@v1-release
 | 
				
			||||||
      with:
 | 
					      with:
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user