feat: switch default AI models to gemini-3.1-flash-lite-preview #46
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: Deploy | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| jobs: | |
| Deploy: | |
| runs-on: ubuntu-latest | |
| if: "! contains(github.event.head_commit.message, '[skip ci]')" | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v3 | |
| with: | |
| version: 9 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Install blocklet CLI | |
| run: npm install -g @blocklet/cli@1.17.10 graphql | |
| - name: Blocklet workflow | |
| uses: blocklet/action-workflow@v1 | |
| with: | |
| skip-deps: true | |
| skip-upload: false | |
| skip-deploy: true | |
| skip-release: true | |
| skip-readme: true | |
| bundle-command: pnpm bundle | |
| store-endpoint: ${{ secrets.STORE_ENDPOINT_TEST }} | |
| store-access-token: ${{ secrets.STORE_ACCESS_TOKEN_TEST }} | |
| slack-webhook: ${{ secrets.SLACK_WEBHOOK }} |