Skip to content

Commit 49cd025

Browse files
committed
Another fix for IMAGE_TAG var
Signed-off-by: Fiachra Corcoran <fiachra.corcoran@est.tech>
1 parent 784af3a commit 49cd025

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/porch-e2e-ci-jobs.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ jobs:
8989
runs-on: ubuntu-latest
9090
timeout-minutes: 30
9191
needs: build
92+
env:
93+
IMAGE_TAG: ${{ needs.build.outputs.image-tag }}
9294
strategy:
9395
fail-fast: false
9496
matrix:
@@ -152,7 +154,10 @@ jobs:
152154
kind load docker-image ${IMAGE_REPO}/${PORCH_WRAPPER_SERVER_IMAGE}:${{ needs.build.outputs.image-tag }} -n ${KIND_CONTEXT_NAME}
153155
kind load docker-image ${IMAGE_REPO}/${TEST_GIT_SERVER_IMAGE}:${{ needs.build.outputs.image-tag }} -n ${KIND_CONTEXT_NAME}
154156
- name: Deploy porch kpt pkg
155-
run: IMAGE_TAG=${{ needs.build.outputs.image-tag }} SKIP_IMG_BUILD=true make ${{ matrix.make_target }}
157+
run: |
158+
export IMAGE_TAG=${{ needs.build.outputs.image-tag }}
159+
export SKIP_IMG_BUILD=true
160+
make ${{ matrix.make_target }}
156161
- name: Run E2E tests
157162
run: ${{ matrix.test_env }} go test -v -timeout 20m ${{ matrix.test_path }}
158163
- name: Export porch server logs

0 commit comments

Comments
 (0)