fix: enhance tile interaction logic to prevent drawing on non-tile la… #31
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 Dev | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy-app-dev: | |
| name: Deploy App to dev-app.2dtiler.com | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - uses: oven-sh/setup-bun@v2.2.0 | |
| - name: Install dependencies | |
| run: bun install | |
| working-directory: app | |
| - name: Build | |
| env: | |
| VITE_SENTRY_DSN: ${{ secrets.VITE_SENTRY_DSN }} | |
| run: bun run build | |
| working-directory: app | |
| - name: Deploy to Cloudflare Pages | |
| uses: cloudflare/wrangler-action@v3.14.1 | |
| with: | |
| apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
| accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
| workingDirectory: app | |
| packageManager: bun | |
| wranglerVersion: 4.81.0 | |
| command: pages deploy dist --project-name=2dtiler-app --branch=dev |