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 3575140 commit 81a5911Copy full SHA for 81a5911
.github/workflows/ci.yaml
@@ -437,10 +437,14 @@ jobs:
437
registry: ghcr.io
438
username: ${{ github.actor }}
439
password: ${{ secrets.GITHUB_TOKEN }}
440
+ - name: Set environment variables
441
+ id: vars
442
+ run: |
443
+ echo "COMMIT_SHORT_SHA=${GITHUB_SHA:0:8}" >> $GITHUB_ENV
444
- name: Build bundle-image
445
env:
446
BUNDLE_IMAGE: "ghcr.io/nvidia/gpu-operator/gpu-operator-bundle:${{ github.ref_name }}-latest"
- BUNDLE_IMAGE_TAG: "ghcr.io/nvidia/gpu-operator/gpu-operator-bundle:${GITHUB_SHA:0:8}"
447
+ BUNDLE_IMAGE_TAG: "ghcr.io/nvidia/gpu-operator/gpu-operator-bundle:${{ env.COMMIT_SHORT_SHA }}"
448
VERSION: ""
449
DEFAULT_CHANNEL: "stable"
450
CHANNELS: "stable"
0 commit comments