We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bbb974 commit c5be98cCopy full SHA for c5be98c
1 file changed
.github/workflows/create-release.yml
@@ -21,6 +21,11 @@ on:
21
- beta
22
- rc
23
24
+ dry_run:
25
+ type: boolean
26
+ description: Dry Run?
27
+ default: false
28
+
29
jobs:
30
release-it:
31
runs-on: ubuntu-latest
@@ -67,6 +72,10 @@ jobs:
67
72
params+=(--no-plugins.@release-it/keep-a-changelog.strictLatest)
68
73
fi
69
74
75
+ if [[ ${{ github.event.inputs.dry_run }} == "true" ]]; then
76
+ params+=(--dry-run)
77
+ fi
78
70
79
params+=(--ci)
71
80
81
yarn release-it "${params[@]}"
0 commit comments