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:
Ian Wijma 2023-11-21 00:00:05 +11:00
parent 0b686e86d9
commit a5dd011506
1 changed files with 6 additions and 5 deletions

View File

@ -1,10 +1,11 @@
name: Keep Running
run-name: ${{ gitea.actor }} is running the Keep Running build process 🚀
on: [push]
concurrency: 'true'
name: Releasing
run-name: ${{ gitea.actor }} is building a release releasing 🚀
on:
release:
types: [created]
jobs:
Build:
release:
runs-on: ubuntu-latest
strategy:
fail-fast: false