Skip to content

Commit b4d2059

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

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/release.yml

+11-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
@@ -108,6 +117,7 @@ jobs:
108117
if: success() && inputs.wants-github-release
109118
uses: oliversalzburg/action-automatic-semantic-releases@625efe201bcdaaf5f8b170946b3ec9492ecfc820 # v0.1.1
110119
with:
120+
automatic_release_tag: ${{ inputs.dry-run-tag }}
111121
draft: true
112122
dry_run: ${{ inputs.dry-run }}
113123
files: |

0 commit comments

Comments
 (0)