Skip to content

Commit 236c1a7

Browse files
Fixed CI/CD Pipeline
The previous release introduced a bug, where the GitHub Actions workflow did not correctly set the output variable for the version combinations due to a typo in the variable name. This caused the build process to fail when trying to build images for different CUDA and cuDNN versions. The typo has been fixed by changing "version_combinations" to "version-combinations" in the relevant line of the workflow file.
1 parent 9eb4c24 commit 236c1a7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/build-and-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
})
126126
127127
with open(os.environ['GITHUB_OUTPUT'], mode='a', encoding='utf-8') as output_file:
128-
output_file.write(f'version_combinations={json.dumps({'include': version_combinations})}\n')
128+
output_file.write(f'version-combinations={json.dumps({'include': version_combinations})}\n')
129129
130130
# The "build-and-publish" job builds the Docker images, and publishes them to the GitHub Container Registry
131131
build-and-publish:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v0.6.2 (January 9, 2026)
4+
5+
- This is an emergency release to fix an issue in v0.6.1 where the GitHub Actions workflow did not correctly set the output variable for the version combinations due to a typo in the variable name. This caused the build process to fail when trying to build images for different CUDA and cuDNN versions. The typo has been fixed by changing `version_combinations` to `version-combinations` in the relevant line of the workflow file.
6+
37
## v0.6.1 (January 9, 2026)
48

59
- In order to allow users to choose a specific CUDA version when pulling the image, the Dockerfile was modified to also allow the specification of the PyTorch, CUDA, and cuDNN versions as build arguments. The GitHub Actions workflow was updated to build images for all available combinations of CUDA and cuDNN for the version of PyTorch used in the Dockerfile. The read me was updated to reflect this change.

0 commit comments

Comments
 (0)