We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent badab80 commit f14a98cCopy full SHA for f14a98c
.github/workflows/docker-build-and-test.yaml
@@ -8,6 +8,32 @@ on:
8
branches:
9
- main
10
11
+
12
+ # Manually trigger the workflow
13
+ workflow_dispatch:
14
+ inputs:
15
+ dockerType:
16
+ description: 'Docker Type'
17
+ required: true
18
+ default: 'azurelinux'
19
+ type: choice
20
+ options:
21
+ - azurelinux
22
+ - ubuntu22_04
23
+ - ubuntu24_04
24
+ testCase:
25
+ description: 'Test Case'
26
27
+ default: 'test1'
28
29
30
+ - test1
31
+ - test2
32
33
+### daily cron job to run the workflow
34
+ schedule:
35
+ - cron: '0 0 * * *' # Runs daily at midnight UTC
36
37
env:
38
ACR: jrtc
39
IMAGE_TAG: ${{ github.run_id }}-${{ github.sha }}
0 commit comments