1 parent 3a12006 commit cbbb595Copy full SHA for cbbb595
1 file changed
.github/workflows/release.yml
@@ -25,7 +25,14 @@ name: release
25
on:
26
push:
27
tags: ['v*']
28
- workflow_dispatch: # manual trigger from the Actions tab
+ # TEMPORARY (smoke-test phase): auto-run on every push to v0.1.0 so we
29
+ # don't need the "Run workflow" UI button (which is only visible when
30
+ # the workflow file exists on the default branch). REMOVE this
31
+ # `branches:` block before cutting the real v0.1.0 tag — otherwise
32
+ # every commit on the branch will burn ~1–2h of CI time.
33
+ branches: ['v0.1.0']
34
+ workflow_dispatch: # manual trigger from the Actions tab (only
35
+ # shown once this workflow lands on `main`)
36
37
env:
38
RAPIDS_CUDA_VERSION: "12.9"
0 commit comments