We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14e8257 commit 73fcadfCopy full SHA for 73fcadf
.github/workflows/release.yml
@@ -2,10 +2,23 @@ name: Release
2
3
on:
4
push:
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
+
19
jobs:
20
arduino-devops:
21
uses: Infineon/arduino-devops/.github/workflows/release.yml@latest
22
with:
- release-title: XMC-for-Arduino
23
+ version: ${{ inputs.version }}
24
secrets: inherit
0 commit comments