mirror of
				https://github.com/TheLartians/ModernCppStarter.git
				synced 2025-10-31 18:21:35 +01:00 
			
		
		
		
	feat: add release action
This commit is contained in:
		
							parent
							
								
									f530172a7e
								
							
						
					
					
						commit
						5c1538f56e
					
				
					 2 changed files with 63 additions and 0 deletions
				
			
		
							
								
								
									
										58
									
								
								.github/workflows/release.yml
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										58
									
								
								.github/workflows/release.yml
									
										
									
									
										vendored
									
									
										Normal file
									
								
							|  | @ -0,0 +1,58 @@ | |||
| name: Release | ||||
| 
 | ||||
| on: | ||||
|   push: | ||||
|     branches: | ||||
|       - master | ||||
|       - main | ||||
|   pull_request: | ||||
|     branches: | ||||
|       - master | ||||
|       - main | ||||
| 
 | ||||
| env: | ||||
|   CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm_modules | ||||
| 
 | ||||
| jobs: | ||||
|   build: | ||||
|     runs-on: ${{ matrix.os }} | ||||
| 
 | ||||
|     strategy: | ||||
|       matrix: | ||||
|         os: [ ubuntu-latest, windows-latest, macos-latest ] | ||||
| 
 | ||||
|     steps: | ||||
|       - uses: actions/checkout@v2 | ||||
| 
 | ||||
|       - uses: actions/cache@v2 | ||||
|         with: | ||||
|           path: "**/cpm_modules" | ||||
|           key: ${{ matrix.os }}-${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }} | ||||
| 
 | ||||
|       - name: configure | ||||
|         run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release | ||||
| 
 | ||||
|       - name: build | ||||
|         run: cmake --build build -j4 --config Release | ||||
| 
 | ||||
|       - name: zip | ||||
|         uses: thedoctor0/zip-release@main | ||||
|         with: | ||||
|           type: zip | ||||
|           filename: ${{ matrix.os }}.zip | ||||
|           directory: build/out/ | ||||
| 
 | ||||
|       - name: ls | ||||
|         run: ls | ||||
| 
 | ||||
|       - name: ls | ||||
|         run: ls build | ||||
| 
 | ||||
|       - name: ls | ||||
|         run: ls build/out | ||||
| 
 | ||||
|       - uses: ncipollo/release-action@v1 | ||||
|         with: | ||||
|           allowUpdates: true | ||||
|           artifacts: build/out/${{ matrix.os }}.zip | ||||
|           tag: latest | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue