Skip to content

Commit 584bd40

Browse files
authored
Merge branch 'release-3.8' into 10303-add-option-to-allow-client-directives-to-make-it-to-the-link-chain
2 parents 48f6294 + d1f04d9 commit 584bd40

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/prerelease.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Enter alpha prerelease mode
4848
# If .changeset/pre.json does not exist and we did not recently exit
4949
# prerelease mode, enter prerelease mode with tag alpha
50-
if: ${{ steps.check_files.outputs.files_exists == 'false' && !contains(github.event.head_commit.message, 'Exit prerelease')}}
50+
if: steps.check_files.outputs.files_exists == 'false' && !contains(github.event.head_commit.message, 'Exit prerelease')
5151
run: npx changeset pre enter alpha
5252

5353
- name: Create alpha release PR
@@ -61,9 +61,12 @@ jobs:
6161
id: changesets
6262
# Only run publish if we're still in pre mode and the last commit was
6363
# via an automatically created Version Packages PR
64-
if: ${{ steps.check_files.outputs.files_exists == 'true'}} && startsWith(github.event.head_commit.message, 'Version Packages')}}
64+
if: steps.check_files.outputs.files_exists == 'true' && startsWith(github.event.head_commit.message, 'Version Packages')
6565
run: npm run changeset-publish
6666

67+
- name: Echo Changesets outcome
68+
run: echo "${{ steps.changesets.outcome == 'success' }} ${{ steps.changesets.outputs.published == 'true' }}"
69+
6770
- name: Send a Slack notification on publish
6871
if: steps.changesets.outcome == 'success' && steps.changesets.outputs.published == 'true'
6972
id: slack

0 commit comments

Comments
 (0)