File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 19
19
# DO is a custom runner deployed on DigitalOcean, only available for workflows under the runpod-workers organization.
20
20
# If you would like to use this workflow, you can replace DO with ubuntu-latest or any other runner.
21
21
22
+ strategy :
23
+ matrix :
24
+ cuda_version : [11.8.0, 12.1.0]
25
+
22
26
steps :
23
27
- name : Set up QEMU
24
28
uses : docker/setup-qemu-action@v2
37
41
uses : docker/build-push-action@v4
38
42
with :
39
43
push : true
40
- tags : ${{ vars.DOCKERHUB_REPO }}/${{ vars.DOCKERHUB_IMG }}:${{ (github.event_name == 'release' && github.event.release.tag_name) || (github.event_name == 'workflow_dispatch' && github.event.inputs.image_tag) || 'dev' }}
44
+ tags : ${{ vars.DOCKERHUB_REPO }}/${{ vars.DOCKERHUB_IMG }}:${{ (github.event_name == 'release' && github.event.release.tag_name) || (github.event_name == 'workflow_dispatch' && github.event.inputs.image_tag) || 'dev' }}-cuda${{ matrix.cuda_version }}
45
+ build-args : WORKER_CUDA_VERSION=${{ matrix.cuda_version }}
You can’t perform that action at this time.
0 commit comments