@@ -28,7 +28,7 @@ concurrency:
2828 cancel-in-progress : ${{ github.event_name == 'pull_request' }}
2929
3030env :
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' }}
3232 PUSH_RELEASE : ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'release' }}
3333
3434jobs :
@@ -43,11 +43,11 @@ jobs:
4343 include :
4444 # We only release one docker image per PyTorch version.
4545 # 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" }
5151 steps :
5252 - uses : actions/checkout@v4
5353 with :
0 commit comments