feat(virtualizer): refactor #2653
This file contains hidden or 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: | |
| paths: | |
| - ".changeset/**" | |
| - "packages/**" | |
| branches: | |
| - main | |
| - v2 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| env: | |
| FORCE_COLOR: 2 | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
| HUSKY: 0 | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| token: ${{ secrets.SAGE_PAT }} | |
| - name: Install | |
| uses: ./.github/composite-actions/install | |
| - name: Build packages | |
| run: pnpm build | |
| - name: Enter pre-release mode | |
| if: github.ref == 'refs/heads/v2' | |
| run: | | |
| if [ ! -f .changeset/pre.json ]; then | |
| pnpm changeset pre enter next | |
| fi | |
| - name: Publish packages | |
| id: changesets | |
| uses: changesets/action@v1 | |
| with: | |
| publish: pnpm release | |
| commit: "ci(changesets): version packages" | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
| - name: Slack notification | |
| if: steps.changesets.outputs.published == 'true' | |
| run: pnpm slack | |
| env: | |
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |