Skip to content

Commit cb36d41

Browse files
committed
ci: add prepare-release workflow
1 parent cfb7bd3 commit cb36d41

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/prepare-release.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
inputs:
12+
version:
13+
description: the version to be released. If it ends with '.0' a proper release is created, bugfix otherwise
14+
required: true
15+
type: string
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

Comments
 (0)