Renamed workflow and adjusted it to handle releases
In this commit, I've renamed the name of the workflow from build.yaml to release.yaml. It now gets triggered on 'release' instead of 'push'. The job names and some parameters were also altered to fit into the new release context. The aim of this modification is to optimize the project delivery process as the workflow is now focus on handling final product releases.
This commit is contained in:
		
							parent
							
								
									0b686e86d9
								
							
						
					
					
						commit
						a5dd011506
					
				| 
						 | 
					@ -1,10 +1,11 @@
 | 
				
			||||||
name: Keep Running
 | 
					name: Releasing
 | 
				
			||||||
run-name: ${{ gitea.actor }} is running the Keep Running build process 🚀
 | 
					run-name: ${{ gitea.actor }} is building a release releasing 🚀
 | 
				
			||||||
on: [push]
 | 
					on:
 | 
				
			||||||
concurrency: 'true'
 | 
					  release:
 | 
				
			||||||
 | 
					    types: [created]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
jobs:
 | 
					jobs:
 | 
				
			||||||
  Build:
 | 
					  release:
 | 
				
			||||||
    runs-on: ubuntu-latest
 | 
					    runs-on: ubuntu-latest
 | 
				
			||||||
    strategy:
 | 
					    strategy:
 | 
				
			||||||
      fail-fast: false
 | 
					      fail-fast: false
 | 
				
			||||||
		Loading…
	
		Reference in New Issue