Skip to content

Commit a8b1bcd

Browse files
committed
chore: change deploy workflow to manual trigger only
Users must configure Azure secrets before running deployment. Prevents CI failures when Azure is not configured.
1 parent dec5fff commit a8b1bcd

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed
Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
name: Build and Deploy
22

33
on:
4-
push:
5-
branches: [main]
4+
# Manual trigger only - configure Azure secrets before running
65
workflow_dispatch:
6+
inputs:
7+
environment:
8+
description: 'Deployment environment'
9+
required: true
10+
default: 'production'
11+
type: choice
12+
options:
13+
- production
14+
- staging
715

816
env:
917
RESOURCE_GROUP: equity-research-rg

0 commit comments

Comments
 (0)