Skip to content

Commit

Permalink
Quick fix for release process (#15607)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed May 2, 2023
1 parent 3935131 commit feed85d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Expand Up @@ -119,7 +119,9 @@ jobs:
# Hack: use FORCE_COLOR so that supports-color@5 returnes true for GitHub CI
# Remove once `chalk` is bumped to 4.0.
FORCE_COLOR: true
BABEL_8_BREAKING: ${{ needs.check-release-type.outputs.is-babel-8 == 'true' }}
# Note: `false` doesn't work here, because env vars are strings and Boolean('false')
# is true. Use the empry string instead.
BABEL_8_BREAKING: ${{ needs.check-release-type.outputs.is-babel-8 == 'true' || '' }}

- name: Publish to npm (Babel 7)
run: yarn release-tool publish --yes
Expand Down

0 comments on commit feed85d

Please sign in to comment.