build: add release workflows (#210) #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Prepare Release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
ref: | ||
description: the starting ref to create the release branch. If left empty "main" will be used. | ||
required: false | ||
type: string | ||
default: main | ||
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/technology-prepare-release.yml | ||
secrets: inherit | ||
with: | ||
ref: ${{ inputs.ref }} | ||
version: ${{ inputs.version }} |