Add CI/CD pipelines for automated deployment to Azure Blob Storage#13
Merged
Conversation
## Summary Adds two GitHub Actions workflows to automate deployments of the pathways editor to Azure Blob Storage, mirroring the deployment setup used in the workspaces frontend repo. ### New workflows **`deploy-to-blob.yml` — Release to Azure Blob Storage** - Runs manually via `workflow_dispatch` (choose environment: `develop`, `staging`, `production`) or from another workflow via `workflow_call` - Checks out the selected environment branch, builds the editor with Node 20 (`npm clean-install` + `npm run all`), and uploads the built `dist/` to the `pathways-editor` container - Maps environments to destination folders: `develop` → `dev`, `staging` → `stage`, `production` → `prod` **`deploy-on-merge.yml` — Trigger deployment on PR merge** - Fires when a PR is merged into `develop`, `staging`, or `production` - Calls the release workflow with the merged branch as the target environment
MashB
approved these changes
Jul 6, 2026
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.
Summary
Adds two GitHub Actions workflows to automate deployments of the pathways editor to Azure Blob Storage, mirroring the deployment setup used in the workspaces frontend repo.
New workflows
deploy-to-blob.yml— Release to Azure Blob Storageworkflow_dispatch(choose environment:develop,staging,production) or from another workflow viaworkflow_callnpm clean-install+npm run all), and uploads the builtdist/to thepathways-editorcontainerdevelop→dev,staging→stage,production→proddeploy-on-merge.yml— Trigger deployment on PR mergedevelop,staging, orproduction