We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d49f8a commit b9c48d1Copy full SHA for b9c48d1
.github/workflows/release.yml
@@ -9,6 +9,10 @@ on:
9
nextVersion:
10
description: "Next version (e.g. 1.3.0-SNAPSHOT)"
11
required: false
12
+ dryRun:
13
+ description: "If true, simulate the release without pushing or tagging"
14
+ required: false
15
+ default: "false"
16
17
permissions:
18
contents: write
@@ -24,3 +28,4 @@ jobs:
24
28
with:
25
29
releaseVersion: ${{ github.event.inputs.releaseVersion }}
26
30
nextVersion: ${{ github.event.inputs.nextVersion }}
31
+ dryRun: ${{ github.event.inputs.dryRun }}
0 commit comments