Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix bad env var names
  • Loading branch information
Kristian Freeman committed Oct 14, 2019
1 parent c09ecc8 commit 7071ccd
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_CLOUDFLAREEMAIL}" "CLOUDFLARE_EMAIL"
sanitize "${INPUT_CLOUDFLAREAPI_KEY}" "CLOUDFLARE_API_KEY"

export CF_EMAIL="$INPUT_CLOUDFLAREEMAIL"
export CF_API_KEY="$INPUT_CLOUDFLAREAPIKEY"
export CF_EMAIL="$INPUT_EMAIL"
export CF_API_KEY="$INPUT_APIKEY"

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

0 comments on commit 7071ccd

Please sign in to comment.