fix: support <Show else> in builder json (#1602) #218
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: Publish | |
on: | |
push: | |
branches: | |
- main | |
# We allow manually dispatching workflow when needed. Most often, this will not be needed. | |
workflow_dispatch: | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
publish-sdks: | |
name: Publish package | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup | |
uses: actions/checkout@v4 | |
with: | |
# need this custom token to run CI checks on the created PR | |
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }} | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: 📥 Monorepo install | |
uses: ./.github/actions/yarn-nm-install | |
with: | |
cache-node-modules: true | |
cache-install-state: true | |
- name: Create Release PR & Publish to npm | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
publish: yarn ci:release | |
title: '📦 Publish Mitosis' | |
commit: '📦 Publish Mitosis' | |
env: | |
# need this custom token to run CI checks on the created PR | |
GITHUB_TOKEN: ${{ secrets.CUSTOM_GITHUB_TOKEN }} | |
# probably don't need both of those, but it works! | |
NPM_TOKEN: ${{ secrets.NPM_RELEASE_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_RELEASE_TOKEN }} |