From 8cc012ac590219aa1dc421fc2a93580110aa95ed Mon Sep 17 00:00:00 2001 From: Joshua Gilman Date: Fri, 30 Aug 2024 16:26:24 -0400 Subject: [PATCH] wip: adds groups --- forge/actions/setup/action.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/forge/actions/setup/action.yml b/forge/actions/setup/action.yml index cbbd2b00..5ec55b75 100644 --- a/forge/actions/setup/action.yml +++ b/forge/actions/setup/action.yml @@ -38,6 +38,7 @@ runs: id: aws shell: bash run: | + echo "::group::AWS Setup" BP=$(forge blueprint dump .) AWS=$(echo "$BP" | jq -r .ci.providers.aws) @@ -67,6 +68,8 @@ runs: id: docker shell: bash run: | + echo "::endgroup::" + echo "::group::Docker Setup" BP=$(forge blueprint dump .) DOCKER=$(echo "$BP" | jq -r .ci.providers.docker.credentials) @@ -98,6 +101,8 @@ runs: id: github shell: bash run: | + echo "::endgroup::" + echo "::group::Docker Setup" BP=$(forge blueprint dump .) GITHUB=$(echo "$BP" | jq -r .ci.providers.github.registry) @@ -119,6 +124,8 @@ runs: id: earthly shell: bash run: | + echo "::endgroup::" + echo "::group::Earthly Setup" BP=$(forge blueprint dump .) EARTHLY=$(echo "$BP" | jq -r .ci.providers.earthly)