fix: actually switch back to smaller model nvm #113
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 Marketing App | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - apps/api/** | |
| - apps/web-app/** | |
| workflow_dispatch: | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.2.18 | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: bun install | |
| # disabling biome because we need to cleanup the codebase first | |
| # - name: Setup Biome | |
| # uses: biomejs/setup-biome@v2 | |
| # with: | |
| # version: latest | |
| # - name: Run Biome | |
| # run: biome ci . | |
| - name: Build And Deploy Marketing App | |
| working-directory: apps/marketing-app | |
| run: bun run deploy | |
| env: | |
| NEXT_PUBLIC_STRIPE_LINK: ${{ vars.NEXT_PUBLIC_STRIPE_LINK }} | |
| NEXT_PUBLIC_POSTHOG_KEY: ${{ secrets.NEXT_PUBLIC_POSTHOG_KEY }} | |
| NEXT_PUBLIC_POSTHOG_HOST: ${{ vars.NEXT_PUBLIC_POSTHOG_HOST }} | |
| NEXT_PUBLIC_GAID: ${{ vars.NEXT_PUBLIC_GAID }} | |
| NEXT_PUBLIC_APP_URL: ${{ vars.WEB_APP_URL }} | |
| NEXT_PUBLIC_API_URL: ${{ vars.PUBLIC_API_URL }} | |
| CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
| CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} |