We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1adcece commit 7388f12Copy full SHA for 7388f12
.github/workflows/release.yml
@@ -9,6 +9,9 @@ on:
9
nextVersion:
10
description: "Next version (e.g. 1.3.0-SNAPSHOT)"
11
required: false
12
+ kestraVersion:
13
+ description: "Kestra core version (e.g. 1.1.0)"
14
+ required: true
15
dryRun:
16
description: "If true, simulate the release without pushing or tagging"
17
@@ -27,7 +30,9 @@ jobs:
27
30
uses: kestra-io/actions/composite/plugin-release@main
28
31
with:
29
32
releaseVersion: ${{ github.event.inputs.releaseVersion }}
33
+ kestraVersion: ${{ github.event.inputs.kestraVersion }}
34
nextVersion: ${{ github.event.inputs.nextVersion }}
35
dryRun: ${{ github.event.inputs.dryRun }}
36
+ webhookUrl: ${{ secrets.KESTRA_WEBHOOK_URL_PLUGIN_RELEASE_INDEX }}
37
env:
38
GITHUB_PAT: ${{ secrets.GH_PERSONAL_TOKEN }}
0 commit comments