fix: no composing text inserted on mac wechat browser (#5497) #741
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- main | |
permissions: {} | |
jobs: | |
release: | |
permissions: | |
contents: write # to create release (changesets/action) | |
pull-requests: write # to create pull request (changesets/action) | |
name: ${{ matrix.channel }} | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 1 | |
matrix: | |
channel: | |
- latest | |
- dev | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18.x | |
cache: yarn | |
registry-url: https://registry.npmjs.org | |
key: node18 | |
- name: Install dependencies | |
run: yarn | |
- name: Prepare release | |
run: yarn prerelease | |
# https://github.com/changesets/action | |
- name: Create release pull request or Publish to npm | |
if: matrix.channel == 'latest' | |
uses: changesets/action@v1 | |
with: | |
# defined in package.json#scripts | |
version: yarn changesetversion | |
publish: yarn changeset publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
# https://github.com/atlassian/changesets/blob/master/docs/snapshot-releases.md | |
- name: Release to @dev channel | |
if: matrix.channel == 'dev' | |
run: | | |
yarn changeset version --snapshot | |
yarn changeset publish --tag dev | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |