Skip to content

Commit c1ab8c8

Browse files
ci: Dry-run releases
1 parent a266f31 commit c1ab8c8

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/release.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ on:
1111
description: Only create a test release, without moving the tags?
1212
required: false
1313
type: boolean
14+
dry-run-tag:
15+
description: Release tag to assume.
16+
type: string
17+
required: false
1418
wants-github-release:
1519
default: true
1620
description: Create a GitHub release?
@@ -45,11 +49,16 @@ jobs:
4549
node-version: ${{ env.NODE_VERSION }}
4650
registry-url: https://registry.npmjs.org
4751

48-
# We track the release version through KS only.
4952
- name: Determine versions
53+
if: "${{ inputs.dry-run-tag == '' }}"
5054
run: |
5155
cd packages/kitten-scientists
5256
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
5362
5463
qa:
5564
name: 🔹 QA

0 commit comments

Comments
 (0)