diff --git a/.github/workflows/bump-version-and-create-release-and-push-docker-images.yaml b/.github/workflows/bump-version-and-create-release-and-push-docker-images.yaml
index 198e5d2e..937be822 100644
--- a/.github/workflows/bump-version-and-create-release-and-push-docker-images.yaml
+++ b/.github/workflows/bump-version-and-create-release-and-push-docker-images.yaml
@@ -1,4 +1,4 @@
-name: Bump version and create release
+name: Bump version, create and test release, and push Docker images
 on:
   push:
   # pull_request:
@@ -162,7 +162,7 @@ jobs:
         uses: docker/build-push-action@v6
         with:
           build-args: |
-            VERSION=${{ env.VERSION }}
+            VERSION=${{ needs.compute-version.outputs.new_tag }}
           context: demo
           file: demo/Dockerfile
           push: true
@@ -175,7 +175,7 @@ jobs:
         uses: docker/build-push-action@v6
         with:
           build-args: |
-            VERSION=${{ env.VERSION }}
+            VERSION=${{ needs.compute-version.outputs.new_tag }}
           context: demo
           file: demo/Dockerfile
           push: true