Fix/relese tag2 (#2510)

* Fix release_tag.yaml

Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>

* Fix relase tag

Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>

---------

Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>
This commit is contained in:
Avgustin Marinov
2025-06-27 12:05:34 +03:00
committed by GitHub
parent 4bca6e8a77
commit bb70309a60
3 changed files with 8 additions and 5 deletions

View File

@@ -5,13 +5,16 @@ on:
workflow_dispatch:
inputs:
revision:
type: string
description: 'Release version'
default: '0-SNAPSHOT'
override_tag:
type: boolean
description: 'If to move the tag if already exists'
default: false
required: false
dry_run:
type: boolean
description: 'If to skip publishing the release to central repository'
default: false
required: false

View File

@@ -5,12 +5,13 @@ on:
workflow_dispatch:
inputs:
revision:
type: string
description: 'Release version'
default: '0-SNAPSHOT'
override_tag:
type: boolean
description: 'If to move the tag if already exists'
default: false
required: false
permissions:
contents: write
@@ -36,4 +37,4 @@ jobs:
with:
tag_name: ${{ inputs.revision }}
tag_message: "Release version ${{ inputs.revision }}"
override_tag: ${{ github.event.inputs.override_tag }}
override_tag: ${{ inputs.override_tag }}

View File

@@ -9,12 +9,11 @@ on:
required: true
tag_message:
type: string
description: ''
required: false
description: 'Tag message (optional), e.g. "Release version 1.0.0"'
default: ''
override_tag:
type: boolean
description: 'If to override the tag if already exists'
required: false
default: false
jobs: