Skip to content

Commit ddc04b2

Browse files
committed
build: switch to new release process
1 parent 77d366c commit ddc04b2

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/prepare-release.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,10 @@ on:
77
description: the version to be released. If it ends with '.0' a proper release is created, bugfix otherwise
88
required: true
99
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
1610

1711
jobs:
1812
Prepare-Release:
19-
uses: eclipse-edc/.github/.github/workflows/core-prepare-release.yml@main
13+
uses: eclipse-edc/.github/.github/workflows/prepare-release.yml@main
2014
secrets: inherit
2115
with:
2216
version: ${{ inputs.version }}

.github/workflows/release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ on:
44
workflow_dispatch:
55

66
jobs:
7+
8+
Run-Tests:
9+
uses: ./.github/workflows/verify.yaml
10+
secrets: inherit
11+
712
Release:
8-
uses: eclipse-edc/.github/.github/workflows/core-release.yml@main
13+
needs: [ Run-Tests ]
14+
uses: eclipse-edc/.github/.github/workflows/release.yml@main
915
secrets: inherit

0 commit comments

Comments
 (0)