Add general release.yml workflow

This commit is contained in:
Artem Bilan
2023-11-14 14:15:40 -05:00
parent cf3dc6365a
commit 266407ea71
6 changed files with 89 additions and 54 deletions

17
.github/workflows/release.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: Perform Release
on:
workflow_dispatch:
inputs:
releaseVersion:
description: 'Release version like 3.0.0-M1, 3.1.0-RC1, 3.2.0 etc.'
required: true
type: string
jobs:
release:
uses: spring-projects/spring-integration-aws/.github/workflows/spring-release.yml@main
with:
releaseVersion: ${{ inputs.releaseVersion }}
repositoryTeam: artembilan,garyrussell
secrets: inherit