Skip to content

Commit 1c29f03

Browse files
committed
wip: cleanup
1 parent 8cc012a commit 1c29f03

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

forge/actions/setup/action.yml

+10-8
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ runs:
1313
steps:
1414
# If the local version of forge is requested, we try to build (and cache) it
1515
# locally with Earthly
16+
- if: inputs.forge_version == 'local'
17+
shell: bash
18+
run: "Building Forge CLI locally..."
1619
- name: Install Earthly
1720
uses: earthly/actions-setup@v1
1821
if: inputs.forge_version == 'local'
@@ -31,14 +34,16 @@ runs:
3134
if: steps.cache-forge.outputs.cache-hit != 'true' && inputs.forge_version == 'local'
3235
shell: bash
3336
run: |
34-
earthly --artifact ./forge/cli+build/forge /usr/local/bin/forge
37+
echo "::group::Forge CLI Earthly Build"
38+
earthly --artifact ./forge/cli+build/forge /usr/local/bin/forge
39+
echo "::endgroup::"
3540
3641
# AWS Provider
3742
- name: Get AWS provider configuration
3843
id: aws
3944
shell: bash
4045
run: |
41-
echo "::group::AWS Setup"
46+
echo "==== AWS Setup ====="
4247
BP=$(forge blueprint dump .)
4348
4449
AWS=$(echo "$BP" | jq -r .ci.providers.aws)
@@ -68,8 +73,7 @@ runs:
6873
id: docker
6974
shell: bash
7075
run: |
71-
echo "::endgroup::"
72-
echo "::group::Docker Setup"
76+
echo "==== Docker Setup ====="
7377
BP=$(forge blueprint dump .)
7478
7579
DOCKER=$(echo "$BP" | jq -r .ci.providers.docker.credentials)
@@ -101,8 +105,7 @@ runs:
101105
id: github
102106
shell: bash
103107
run: |
104-
echo "::endgroup::"
105-
echo "::group::Docker Setup"
108+
echo "==== GitHub Setup ====="
106109
BP=$(forge blueprint dump .)
107110
108111
GITHUB=$(echo "$BP" | jq -r .ci.providers.github.registry)
@@ -124,8 +127,7 @@ runs:
124127
id: earthly
125128
shell: bash
126129
run: |
127-
echo "::endgroup::"
128-
echo "::group::Earthly Setup"
130+
echo "==== Earthly Setup ====="
129131
BP=$(forge blueprint dump .)
130132
131133
EARTHLY=$(echo "$BP" | jq -r .ci.providers.earthly)

0 commit comments

Comments
 (0)