mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
feat: add options to the release workflow
This will make it easier to choose a release type.
This commit is contained in:
14
.github/workflows/release.yml
vendored
14
.github/workflows/release.yml
vendored
@@ -1,15 +1,21 @@
|
||||
---
|
||||
name: 'release'
|
||||
name: "release"
|
||||
|
||||
# yamllint disable-line rule:truthy
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
release_type:
|
||||
description: 'Release type [build, betafish, patch, minor, major]'
|
||||
description: "Release type"
|
||||
default: "patch"
|
||||
required: true
|
||||
default: 'build'
|
||||
|
||||
type: choice
|
||||
options:
|
||||
- patch
|
||||
- minor
|
||||
- major
|
||||
- build
|
||||
- betafish
|
||||
jobs:
|
||||
release:
|
||||
name: release
|
||||
|
||||
Reference in New Issue
Block a user