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 cfb7bd3 commit cb36d41
Showing 1 changed file with 22 additions and 0 deletions.
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 }}

0 comments on commit cb36d41

Please sign in to comment.