Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix env vars
  • Loading branch information
Kristian Freeman committed Oct 14, 2019
1 parent e4957e6 commit 26e61bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Expand Up @@ -25,8 +25,8 @@ chmod -R 777 "$HOME/.wrangler"
sanitize "${INPUT_CLOUDFLARE_EMAIL}" "CLOUDFLARE_EMAIL"
sanitize "${INPUT_CLOUDFLARE_API_KEY}" "CLOUDFLARE_API_KEY"

export CLOUDFLARE_EMAIL="$INPUT_CLOUDFLARE_EMAIL"
export CLOUDFLARE_API_KEY="$INPUT_CLOUDFLARE_API_KEY"
export CF_EMAIL="$INPUT_CLOUDFLARE_EMAIL"
export CF_API_KEY="$INPUT_CLOUDFLARE_API_KEY"

npm i @cloudflare/wrangler -g
npm i
Expand Down

0 comments on commit 26e61bb

Please sign in to comment.