From 7a30ef9249038708603f1cd84d66622fa056724e Mon Sep 17 00:00:00 2001 From: Bryan Honof Date: Fri, 9 Jun 2023 20:33:10 +0200 Subject: [PATCH] Actually add aws credentials to github env (#15) --- configure-substituter.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure-substituter.sh b/configure-substituter.sh index 20aded5..18a1226 100755 --- a/configure-substituter.sh +++ b/configure-substituter.sh @@ -9,8 +9,8 @@ echo "${INPUT_SUBSTITUTER_KEY}" >/tmp/secret-key echo "Populating the environment with the substituter's URL and options, and AWS's credentials" { echo "FLOX_SUBSTITUTER=${INPUT_SUBSTITUTER}${INPUT_SUBSTITUTER_OPTIONS}" - echo "${INPUT_AWS_ACCESS_KEY_ID}" - echo "${INPUT_AWS_SECRET_ACCESS_KEY}" + echo "AWS_ACCESS_KEY_ID=${INPUT_AWS_ACCESS_KEY_ID}" + echo "AWS_SECRET_ACCESS_KEY=${INPUT_AWS_SECRET_ACCESS_KEY}" } >>"${GITHUB_ENV}" echo "Making the Nix daemon aware of the substituter"