File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 47
47
- name : Enter alpha prerelease mode
48
48
# If .changeset/pre.json does not exist and we did not recently exit
49
49
# 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')
51
51
run : npx changeset pre enter alpha
52
52
53
53
- name : Create alpha release PR
61
61
id : changesets
62
62
# Only run publish if we're still in pre mode and the last commit was
63
63
# 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')
65
65
run : npm run changeset-publish
66
66
67
+ - name : Echo Changesets outcome
68
+ run : echo "${{ steps.changesets.outcome == 'success' }} ${{ steps.changesets.outputs.published == 'true' }}"
69
+
67
70
- name : Send a Slack notification on publish
68
71
if : steps.changesets.outcome == 'success' && steps.changesets.outputs.published == 'true'
69
72
id : slack
You can’t perform that action at this time.
0 commit comments