Skip to content

build: add release workflows (#210) #5

build: add release workflows (#210)

build: add release workflows (#210) #5

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

Check failure on line 18 in .github/workflows/prepare-release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/prepare-release.yml

Invalid workflow file

invalid value workflow reference: no version specified
secrets: inherit
with:
ref: ${{ inputs.ref }}
version: ${{ inputs.version }}