@@ -28,7 +28,7 @@ concurrency:
28
28
cancel-in-progress : ${{ github.event_name == 'pull_request' }}
29
29
30
30
env :
31
- PUSH_NIGHTLY : true # fixme: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
31
+ PUSH_NIGHTLY : ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
32
32
PUSH_RELEASE : ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'release' }}
33
33
34
34
jobs :
@@ -43,11 +43,11 @@ jobs:
43
43
include :
44
44
# We only release one docker image per PyTorch version.
45
45
# Make sure the matrix here matches the one below.
46
- - { python_version: "3.10", pytorch_version: "2.1.0 ", cuda_version: "12.1.0" }
47
- - { python_version: "3.11", pytorch_version: "2.2.2 ", cuda_version: "12.1.0" }
48
- - { python_version: "3.11", pytorch_version: "2.3.1 ", cuda_version: "12.1.0" }
49
- - { python_version: "3.11", pytorch_version: "2.4.1 ", cuda_version: "12.1.0" }
50
- - { python_version: "3.12", pytorch_version: "2.5.0 ", cuda_version: "12.1.0" }
46
+ - { python_version: "3.10", pytorch_version: "2.1", cuda_version: "12.1.0" }
47
+ - { python_version: "3.11", pytorch_version: "2.2", cuda_version: "12.1.0" }
48
+ - { python_version: "3.11", pytorch_version: "2.3", cuda_version: "12.1.0" }
49
+ - { python_version: "3.11", pytorch_version: "2.4", cuda_version: "12.1.0" }
50
+ - { python_version: "3.12", pytorch_version: "2.5", cuda_version: "12.1.0" }
51
51
steps :
52
52
- uses : actions/checkout@v4
53
53
with :
0 commit comments