Add CI workflow to push-deploy ui/ as bedhost-ui worker#274
Merged
Conversation
Deploying bedhost-ui with
|
| Latest commit: |
9b8aaf4
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://39dddc24.bedhost.pages.dev |
| Branch Preview URL: | https://add-ui-deploy-workflow.bedhost.pages.dev |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a GitHub Actions workflow to build the ui/ frontend and deploy it to the bedhost-ui Cloudflare Worker on pushes to master (scoped to ui/**) and via manual dispatch, supporting the migration away from Cloudflare Pages pull builds.
Changes:
- Introduces
.github/workflows/deploy-ui.ymlto install dependencies, build the Vite app withVITE_API_BASE=https://api.bedbase.org/v1, and deploy viacloudflare/wrangler-action@v3. - Configures triggers for push-to-
masterdeployments limited to changes underui/**, plusworkflow_dispatch.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+12
to
+15
| jobs: | ||
| deploy: | ||
| name: Build and deploy ui/ to Cloudflare Workers | ||
| runs-on: ubuntu-latest |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
.github/workflows/deploy-ui.ymlso theui/frontend deploys to thebedhost-uiCloudflare Worker via GitHub Actions on push to master (paths: ui/**) + manual dispatch.Builds with production
VITE_API_BASE=https://api.bedbase.org/v1(matches the current Pages production env). Uses the existingui/wrangler.jsonc(worker.ts + static assets). Part of migrating bedbase.org off the Cloudflare Pages pull build onto a push Worker.Note: ui/ has no committed package-lock.json, so the workflow uses
npm install; switch tonpm cionce a lockfile is committed.