Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR introduces updates to the build commands in GitHub workflows and adjusts resource URLs in the tauri configuration to point to a new Supabase storage endpoint.
- Updated build commands from "pnpm run build" to "pnpm run tauri build" in multiple GitHub workflow files.
- Modified file URLs in taxdb_config.toml to reference the new Supabase endpoint.
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| .github/workflows/test_build.yml | Replaced build commands with tauri build commands for different OS targets. |
| .github/workflows/crab_nebula.yml | Replaced build commands with tauri build commands for different OS targets. |
| apps/poleshift-app/src-tauri/resources/taxdb_config.toml | Updated resource URLs to a new Supabase endpoint. |
| [[resource]] | ||
| file_name = "database.kdb.gz" | ||
| file_url = "https://pr2.poleshift.cloud/database.kdb.gz" | ||
| file_url = "https://pvikwknnxcuuhiwungqh.supabase.co/storage/v1/object/public/dbpr2//database.kdb.gz" |
There was a problem hiding this comment.
The URL contains an extra slash in the path ('dbpr2//database.kdb.gz'); please remove the redundant slash to avoid potential endpoint issues.
| file_url = "https://pvikwknnxcuuhiwungqh.supabase.co/storage/v1/object/public/dbpr2//database.kdb.gz" | |
| file_url = "https://pvikwknnxcuuhiwungqh.supabase.co/storage/v1/object/public/dbpr2/database.kdb.gz" |
| [[resource]] | ||
| file_name = "database.kdb.counts.gz" | ||
| file_url = "https://pr2.poleshift.cloud/database.kdb.counts.gz" | ||
| file_url = "https://pvikwknnxcuuhiwungqh.supabase.co/storage/v1/object/public/dbpr2//database.kdb.counts.gz" |
There was a problem hiding this comment.
The URL contains an extra slash in the path ('dbpr2//database.kdb.counts.gz'); please remove the redundant slash to ensure proper URL formatting.
| file_url = "https://pvikwknnxcuuhiwungqh.supabase.co/storage/v1/object/public/dbpr2//database.kdb.counts.gz" | |
| file_url = "https://pvikwknnxcuuhiwungqh.supabase.co/storage/v1/object/public/dbpr2/database.kdb.counts.gz" |
| [[resource]] | ||
| file_name = "database.idx.gz" | ||
| file_url = "https://pr2.poleshift.cloud/database.idx.gz" | ||
| file_url = "https://pvikwknnxcuuhiwungqh.supabase.co/storage/v1/object/public/dbpr2//database.idx.gz" |
There was a problem hiding this comment.
The URL contains an extra slash in the path ('dbpr2//database.idx.gz'); consider removing the extra slash to avoid potential issues.
| file_url = "https://pvikwknnxcuuhiwungqh.supabase.co/storage/v1/object/public/dbpr2//database.idx.gz" | |
| file_url = "https://pvikwknnxcuuhiwungqh.supabase.co/storage/v1/object/public/dbpr2/database.idx.gz" |
| [[resource]] | ||
| file_name = "taxDB.gz" | ||
| file_url = "https://pr2.poleshift.cloud/taxDB.gz" | ||
| file_url = "https://pvikwknnxcuuhiwungqh.supabase.co/storage/v1/object/public/dbpr2//taxDB.gz" |
There was a problem hiding this comment.
The URL for 'taxDB.gz' has an extra slash ('dbpr2//taxDB.gz'); please remove the additional slash to prevent unexpected behavior.
| file_url = "https://pvikwknnxcuuhiwungqh.supabase.co/storage/v1/object/public/dbpr2//taxDB.gz" | |
| file_url = "https://pvikwknnxcuuhiwungqh.supabase.co/storage/v1/object/public/dbpr2/taxDB.gz" |
No description provided.