Skip to content

Commit 73fcadf

Browse files
committed
.github/workflows/release.yml: Updated reusable workflow.
Signed-off-by: jaenrig-ifx <[email protected]>
1 parent 14e8257 commit 73fcadf

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.github/workflows/release.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,23 @@ name: Release
22

33
on:
44
push:
5-
5+
tags:
6+
- '[0-9]+.[0-9]+.[0-9]+**'
7+
workflow_dispatch:
8+
inputs:
9+
version:
10+
description: 'Release version'
11+
required: true
12+
default: ''
13+
type: choice
14+
options:
15+
- patch
16+
- minor
17+
- major
18+
619
jobs:
720
arduino-devops:
821
uses: Infineon/arduino-devops/.github/workflows/release.yml@latest
922
with:
10-
release-title: XMC-for-Arduino
23+
version: ${{ inputs.version }}
1124
secrets: inherit

0 commit comments

Comments
 (0)