mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-07-31 23:36:12 +00:00
gha: Add release-{major,minor} workflows
Those will allow us to cut a release just by a single click, instead of the current process we have. Fixes: #9064 -- part I Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
This commit is contained in:
parent
f9f04dca2b
commit
008293f015
10
.github/workflows/release-major.yaml
vendored
Normal file
10
.github/workflows/release-major.yaml
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
name: Major Release
|
||||
on:
|
||||
workflow_dispatch
|
||||
|
||||
jobs:
|
||||
major-release:
|
||||
uses: ./.github/workflows/release.yaml
|
||||
with:
|
||||
release-type: major
|
||||
secrets: inherit
|
10
.github/workflows/release-minor.yaml
vendored
Normal file
10
.github/workflows/release-minor.yaml
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
name: Minor Release
|
||||
on:
|
||||
workflow_dispatch
|
||||
|
||||
jobs:
|
||||
minor-release:
|
||||
uses: ./.github/workflows/release.yaml
|
||||
with:
|
||||
release-type: minor
|
||||
secrets: inherit
|
Loading…
Reference in New Issue
Block a user