Skip to content

Commit

Permalink
ci: add prepare-release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ndr-brt committed Aug 27, 2024
1 parent f198569 commit 87d2f99
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Prepare Release

on:
workflow_dispatch:
inputs:
version:
description: the version to be released. If it ends with '.0' a proper release is created, bugfix otherwise
required: true
type: string
workflow_call:
inputs:
version:
description: the version to be released. If it ends with '.0' a proper release is created, bugfix otherwise
required: true
type: string

jobs:
Prepare-Release:
uses: eclipse-edc/.github/.github/workflows/core-prepare-release.yml@main
secrets: inherit
with:
version: ${{ inputs.version }}
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rootProject.name = "edc-runtime-metamodel"
rootProject.name = "runtime-metamodel"

include(":runtime-metamodel")
include(":version-catalog")
Expand Down

0 comments on commit 87d2f99

Please sign in to comment.