From c7dcc0a60afe54859d4fc1485549b2b190d8f54e Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Sat, 23 Dec 2023 17:19:30 -0500 Subject: [PATCH] feat: add flux-containers workflow Signed-off-by: Devin Buhl --- .github/workflows/flux-containers.yaml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/flux-containers.yaml b/.github/workflows/flux-containers.yaml index 99099f43072f1..fda6983a9f547 100644 --- a/.github/workflows/flux-containers.yaml +++ b/.github/workflows/flux-containers.yaml @@ -90,8 +90,8 @@ get cluster --path /github/workspace/default/${{ matrix.paths }} --enable-images - --output json - --output-file default.json + --output yaml + --output-file default.yaml - name: Gather images in pull request branch uses: docker://ghcr.io/allenporter/flux-local:main @@ -101,5 +101,13 @@ get cluster --path /github/workspace/pull/${{ matrix.paths }} --enable-images - --output json - --output-file pull.json + --output yaml + --output-file pull.yaml + + - name: Test + shell: bash + run: | + echo "default.yaml" + cat default.yaml + echo "pull.yaml" + cat pull.yaml