Skip to content

Commit

Permalink
Add trigger-release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joschi committed May 23, 2024
1 parent ffa349d commit 9cbb219
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/trigger-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
# yamllint disable rule:comments rule:line-length
name: Trigger Release
# yamllint disable-line rule:truthy
on:
workflow_dispatch:
inputs:
releaseVersion:
description: Version of the next release
required: true
type: string
developmentVersion:
description: Version of the next development cycle (must end in "-SNAPSHOT")
required: true
type: string
jobs:
release:
uses: dropwizard/workflows/.github/workflows/trigger-release.yml@main
secrets: inherit
with:
releaseVersion: ${{ inputs.releaseVersion }}
developmentVersion: ${{ inputs.developmentVersion }}

0 comments on commit 9cbb219

Please sign in to comment.