Skip to content

Commit d8a43e3

Browse files
committed
Fix deployment job branch condition
- Change develop to development branch reference - This will allow Build for Deployment job to run on development branch pushes - Previously skipped due to incorrect branch name reference
1 parent 8f91013 commit d8a43e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ jobs:
225225
name: Build for Deployment
226226
runs-on: ubuntu-latest
227227
needs: [lint-and-typecheck, security-scan, test-core, test-server, test-web, test-mcp-server]
228-
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop'
228+
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/development'
229229
steps:
230230
- name: Checkout code
231231
uses: actions/checkout@v4

0 commit comments

Comments
 (0)