fix: skip confirmation
This commit is contained in:
parent
216c5c31ec
commit
fb0e2b61ff
|
@ -4,9 +4,9 @@ on:
|
|||
workflow_dispatch:
|
||||
inputs:
|
||||
bump:
|
||||
description: 'Version bump type (major, minor, patch)'
|
||||
description: "Version bump type (major, minor, patch)"
|
||||
required: true
|
||||
default: 'patch'
|
||||
default: "patch"
|
||||
type: choice
|
||||
options:
|
||||
- major
|
||||
|
@ -38,4 +38,4 @@ jobs:
|
|||
env:
|
||||
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_TOKEN }}
|
||||
run: |
|
||||
cargo release ${{ github.event.inputs.bump }} --execute
|
||||
cargo release ${{ github.event.inputs.bump }} --execute --no-confirm
|
||||
|
|
Loading…
Reference in New Issue