feat: finetune command palette. #176
Workflow file for this run
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 Any Commit | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| paths-ignore: | |
| - 'docs/**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: 🚀 Publish to pkg.pr.new | |
| steps: | |
| - name: 👀 Checkout | |
| uses: actions/checkout@v6 | |
| - name: ⚙️ Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: 📦️ Install dependencies | |
| run: bun install --frozen-lockfile | |
| env: | |
| FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }} | |
| - name: 🔨 Build | |
| run: | | |
| bun --cwd packages/internals build | |
| bun --cwd packages/components build | |
| bun --cwd packages/dashboard build | |
| bun --cwd packages/statistics build | |
| env: | |
| FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }} | |
| - name: 🚀 Publish | |
| run: bunx pkg-pr-new publish --compact './packages/*' |