Skip to content

Commit 3778515

Browse files
committed
Generic offline workflow
1 parent 9a9c073 commit 3778515

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

.github/workflows/offline.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Offline
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
azure_region:
7+
description: 'Azure region to deploy resources'
8+
required: true
9+
default: 'centralus'
10+
type: choice
11+
options:
12+
- centralus
13+
- eastus
14+
- eastus2
15+
- westus
16+
- westus2
17+
- westus3
18+
- northcentralus
19+
- southcentralus
20+
- canadacentral
21+
- canadaeast
22+
- uksouth
23+
- ukwest
24+
- northeurope
25+
- westeurope
26+
pull_request:
27+
branches:
28+
- '*'
29+
30+
jobs:
31+
offline:
32+
runs-on: self-hosted
33+
34+
steps:
35+
- name: Checkout repository
36+
uses: actions/checkout@v4.1.1
37+
38+
- name: Placeholder step
39+
run: |
40+
echo "Offline workflow - ready for implementation"
41+
echo "Azure region: ${{ inputs.azure_region || 'centralus' }}"
42+

0 commit comments

Comments
 (0)