From a7ac11c90bfe04686cd16b00bbbdca503b4d7e41 Mon Sep 17 00:00:00 2001 From: Salah Al Saleh Date: Fri, 26 Jan 2024 15:52:06 +0000 Subject: [PATCH] test new bundle format --- .github/workflows/build-test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test.yaml b/.github/workflows/build-test.yaml index 6530ea61a5..632a750eba 100644 --- a/.github/workflows/build-test.yaml +++ b/.github/workflows/build-test.yaml @@ -36,14 +36,14 @@ jobs: BUNDLE_DIR: kotsadm-bundle BUNDLE_REGISTRY: localhost:5000 GIT_TAG: ${{ needs.generate-tag.outputs.tag }} - run: make kotsadm-bundle + run: mapfile -t envs < <(grep -v '#.*' < .image.env) && export "${envs[@]}" && make kotsadm-bundle - name: Build kotsadm bundle without minio env: BUNDLE_DIR: kotsadm-bundle-nominio BUNDLE_REGISTRY: localhost:5001 GIT_TAG: ${{ needs.generate-tag.outputs.tag }} - run: make kotsadm-bundle-nominio + run: mapfile -t envs < <(grep -v '#.*' < .image.env) && export "${envs[@]}" && make kotsadm-bundle-nominio - name: ls dirs run: |