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 cfb7bd3 commit cb36d41Copy full SHA for cb36d41
.github/workflows/prepare-release.yml
@@ -0,0 +1,22 @@
1
+name: Prepare Release
2
+
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ version:
7
+ description: the version to be released. If it ends with '.0' a proper release is created, bugfix otherwise
8
+ required: true
9
+ type: string
10
+ workflow_call:
11
12
13
14
15
16
17
+jobs:
18
+ Prepare-Release:
19
+ uses: eclipse-edc/.github/.github/workflows/core-prepare-release.yml@main
20
+ secrets: inherit
21
+ with:
22
+ version: ${{ inputs.version }}
0 commit comments