Skip to content

Commit 7b362d0

Browse files
feat: Add runner_os input option for deployment environment in workflow
1 parent 348e9d6 commit 7b362d0

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/deploy-linux.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ on:
2222
- '.github/workflows/deploy-v2.yml'
2323
workflow_dispatch:
2424
inputs:
25+
runner_os:
26+
description: 'Deployment Environment'
27+
required: false
28+
type: choice
29+
options:
30+
- 'codespace'
31+
- 'Local'
32+
default: 'codespace'
2533
azure_location:
2634
description: 'Azure Location For Deployment'
2735
required: false
@@ -89,14 +97,6 @@ on:
8997
required: false
9098
default: ''
9199
type: string
92-
runner_os:
93-
description: 'Deployment Environment'
94-
required: false
95-
type: choice
96-
options:
97-
- 'codespace'
98-
- 'Local'
99-
default: 'codespace'
100100

101101
schedule:
102102
- cron: '0 9,21 * * *' # Runs at 9:00 AM and 9:00 PM GMT

0 commit comments

Comments
 (0)