fix: skip confirmation

This commit is contained in:
rvcas 2025-02-21 13:16:41 -05:00 committed by Lucas
parent 216c5c31ec
commit fb0e2b61ff
1 changed files with 8 additions and 8 deletions

View File

@ -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