fix: Switch to next-axiom #128
This file contains 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 to Convex | |
on: | |
push: | |
branches: ["master"] | |
merge_group: | |
# You can leverage Vercel Remote Caching with Turbo to speed up your builds | |
# @link https://turborepo.org/docs/core-concepts/remote-caching#remote-caching-on-vercel-builds | |
env: | |
FORCE_COLOR: 3 | |
TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
jobs: | |
update-city-data: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
uses: ./tooling/github/setup | |
- name: Deploy to convex | |
run: pnpm convex:deploy | |
env: | |
CONVEX_URL: ${{ secrets.CONVEX_URL }} | |
CONVEX_DEPLOY_KEY: ${{ secrets.CONVEX_DEPLOY_KEY }} |