47
47
- { python_version: "3.11", pytorch_version: "2.2", cuda_version: "12.1.0" }
48
48
- { python_version: "3.11", pytorch_version: "2.3", cuda_version: "12.1.0" }
49
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", latest: true }
50
+ - { python_version: "3.12", pytorch_version: "2.5", cuda_version: "12.1.0", tag: "--add_latest" }
51
51
steps :
52
52
- uses : actions/checkout@v4
53
53
with :
@@ -66,12 +66,11 @@ jobs:
66
66
- name : Set tags
67
67
run : |
68
68
pip install -q -r .actions/requirements.txt
69
- tags = $(python .actions/assistant.py generate_docker_tags \
70
- --release-version="${{ env.RELEASE_VERSION }}" \
71
- --python-version="${{ matrix.python_version }}" \
72
- --torch-version="${{ matrix.pytorch_version }}" \
73
- --cuda-version="${{ matrix.cuda_version }}" \
74
- --add_latest="${{ matrix.latest }}")
69
+ tags = $(python .actions/assistant.py generate-docker-tags \
70
+ --release_version="${{ env.RELEASE_VERSION }}" \
71
+ --python_version="${{ matrix.python_version }}" \
72
+ --torch_version="${{ matrix.pytorch_version }}" \
73
+ --cuda_version="${{ matrix.cuda_version }}" ${{ matrix.tag }} )
75
74
echo "DOCKER_TAGS=$tags" >> $GITHUB_ENV
76
75
77
76
- uses : docker/build-push-action@v6
0 commit comments