Skip to content

Commit ca061a4

Browse files
committed
wip: testing
1 parent 5a3891b commit ca061a4

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

blueprint.cue

-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ ci: {
99
credentials: {
1010
provider: "aws"
1111
path: "global/ci/docker"
12-
maps: {
13-
username: "username"
14-
password: "password"
15-
}
1612
}
1713
}
1814
earthly: {

forge/actions/setup/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ runs:
100100
EARTHLY=$(echo "$BP" | jq -r .ci.providers.earthly.credentials)
101101
if [[ "$EARTHLY" != "null" ]]; then
102102
SECRET=$(forge secret get -b . ci.providers.earthly.credentials)
103-
TOKEN=$(echo "$EARTHLY" | jq -r .token)
103+
TOKEN=$(echo "$SECRET" | jq -r .token)
104104
105105
if [[ "$TOKEN" == "null" ]]; then
106106
echo "Error: the earthly provider secret must map the secret value to 'token'"

0 commit comments

Comments
 (0)