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.
2 parents 9ea5211 + f2dc9ae commit afcdf47Copy full SHA for afcdf47
1 file changed
.github/workflows/UploadDockerImages.yml
@@ -21,6 +21,23 @@ on:
21
schedule:
22
# Run the job daily at 12AM UTC
23
- cron: '0 0 * * *'
24
+ workflow_dispatch:
25
+ # Trigger Manual run
26
+ branches:
27
+ - main
28
+ inputs:
29
+ target_device:
30
+ description: 'Specify target device (tpu or gpu)'
31
+ required: false
32
+ type: choice
33
+ options:
34
+ - tpu
35
+ - gpu
36
+ run_all_jobs:
37
+ description: 'Run all TPU and GPU build jobs (overrides target_device)'
38
39
+ type: boolean
40
+ default: false
41
42
jobs:
43
tpu:
0 commit comments