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