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