File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 11
11
description : Only create a test release, without moving the tags?
12
12
required : false
13
13
type : boolean
14
+ dry-run-tag :
15
+ description : Release tag to assume.
16
+ type : string
17
+ required : false
14
18
wants-github-release :
15
19
default : true
16
20
description : Create a GitHub release?
@@ -45,11 +49,16 @@ jobs:
45
49
node-version : ${{ env.NODE_VERSION }}
46
50
registry-url : https://registry.npmjs.org
47
51
48
- # We track the release version through KS only.
49
52
- name : Determine versions
53
+ if : " ${{ inputs.dry-run-tag == '' }}"
50
54
run : |
51
55
cd packages/kitten-scientists
52
56
echo "RELEASE_VERSION=$(node ../../scripts/release-version.cjs)" >> $GITHUB_ENV
57
+ - name : Set versions
58
+ if : " ${{ inputs.dry-run-tag != '' }}"
59
+ run : |
60
+ cd packages/kitten-scientists
61
+ echo "RELEASE_VERSION=${{ inputs.dry-run-tag }}" >> $GITHUB_ENV
53
62
54
63
qa :
55
64
name : 🔹 QA
You can’t perform that action at this time.
0 commit comments