Skip to content

Deps: Bump ruff from 0.4.8 to 0.4.9 in the python-packages group #25

Deps: Bump ruff from 0.4.8 to 0.4.9 in the python-packages group

Deps: Bump ruff from 0.4.8 to 0.4.9 in the python-packages group #25

Workflow file for this run

name: Release
on:
pull_request:
types: [closed]
workflow_dispatch:
inputs:
release-type:
type: choice
description: What kind of release do you want to do?
options:
- patch
- minor
- major
release-version:
type: string
description: Set an explicit version, that will overwrite release-type. Fails if version is not compliant.
# don't run two release processes at the same time
# but also don't cancel already running workflow because it might already be to late
concurrency:
group: ${{ github.workflow }}
jobs:
build-and-release:
name: Create a new release
uses: greenbone/workflows/.github/workflows/release-python.yml@main
secrets: inherit
with:
release-version: ${{ inputs.release-version }}
release-type: ${{ inputs.release-type }}