fix(menu): context menu positioning issues #2727
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 | |
| 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: 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}} | |
| # changesets/action pushes per-package tags concurrently via Promise.all, | |
| # which intermittently hits GitHub's commit_refs ref-update contention. | |
| # This step batches any missing tags into a single push as a safety net. | |
| - name: Push tags (fallback) | |
| if: always() && steps.changesets.outcome != 'skipped' | |
| run: | | |
| for i in 1 2 3 4 5; do | |
| git push origin --tags && exit 0 | |
| echo "tag push failed (attempt $i), retrying in $((i*5))s..." | |
| sleep $((i*5)) | |
| done | |
| exit 1 | |
| - name: Slack notification | |
| if: steps.changesets.outputs.published == 'true' | |
| run: pnpm slack | |
| env: | |
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |