We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24e765d commit 87b7915Copy full SHA for 87b7915
.github/workflows/image.yaml
@@ -31,7 +31,7 @@ jobs:
31
steps:
32
- uses: actions/checkout@v5
33
name: Check out code
34
-
+
35
- name: Install Go
36
uses: actions/setup-go@v6
37
with:
@@ -61,3 +61,9 @@ jobs:
61
run: |
62
echo "${VERSION}"
63
make -f deployments/container/Makefile build
64
+ # Push the image again, using a shorter tag (only the 8 character
65
+ # commit hash). That's for consumption in downstream CI (for copying
66
+ # the image from GHCR to elsewhere). See
67
+ # https://github.com/NVIDIA/k8s-dra-driver-gpu/issues/688
68
+ export IMAGE_TAG="$(echo $GITHUB_SHA | cut -c1-8)"
69
+ make -f deployments/container/Makefile build
0 commit comments