We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a3891b commit ca061a4Copy full SHA for ca061a4
blueprint.cue
@@ -9,10 +9,6 @@ ci: {
9
credentials: {
10
provider: "aws"
11
path: "global/ci/docker"
12
- maps: {
13
- username: "username"
14
- password: "password"
15
- }
16
}
17
18
earthly: {
forge/actions/setup/action.yml
@@ -100,7 +100,7 @@ runs:
100
EARTHLY=$(echo "$BP" | jq -r .ci.providers.earthly.credentials)
101
if [[ "$EARTHLY" != "null" ]]; then
102
SECRET=$(forge secret get -b . ci.providers.earthly.credentials)
103
- TOKEN=$(echo "$EARTHLY" | jq -r .token)
+ TOKEN=$(echo "$SECRET" | jq -r .token)
104
105
if [[ "$TOKEN" == "null" ]]; then
106
echo "Error: the earthly provider secret must map the secret value to 'token'"
0 commit comments