Switch to inputs

This commit is contained in:
Kristian Freeman 2019-10-11 14:25:47 -05:00
parent 271f26dd01
commit c3eb4af3f6
2 changed files with 35 additions and 17 deletions

View file

@ -3,3 +3,10 @@ description: 'Cloudflare Workers Deploy'
runs: runs:
using: 'docker' using: 'docker'
image: 'Dockerfile' image: 'Dockerfile'
inputs:
apiKey:
description: "Your Cloudflare API Key"
required: true
email:
description: "Your Cloudflare Email"
required: true

View file

@ -6,25 +6,36 @@ export HOME="/github/workspace"
export NVM_DIR="/github/workspace/nvm" export NVM_DIR="/github/workspace/nvm"
export WRANGLER_HOME="/github/workspace" export WRANGLER_HOME="/github/workspace"
mkdir -p "$HOME/.wrangler" function install_nvm() {
chmod -R 777 "$HOME/.wrangler" curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.0/install.sh | bash
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
}
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.0/install.sh | bash function main() {
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm mkdir -p "$HOME/.wrangler"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion chmod -R 777 "$HOME/.wrangler"
if [ -n "$CLOUDFLARE_API_KEY" ]; then install_nvm
echo "CLOUDFLARE_API_KEY env var needs to be set. Add this field in the 'Secrets' section of your repo's settings."
sanitize "${INPUT_EMAIL}" "email"
export CLOUDFLARE_EMAIL="$INPUT_EMAIL"
sanitize "${INPUT_APIKEY}" "apiKey"
export CLOUDFLARE_API_KEY="$INPUT_APIKEY"
npm i @cloudflare/wrangler -g
npm i
wrangler whoami
wrangler publish
}
# h/t https://github.com/elgohr/Publish-Docker-Github-Action
function sanitize() {
if [ -z "${1}" ]; then
>&2 echo "Unable to find the ${2}. Did you set with.${2}?"
exit 1 exit 1
fi fi
}
if [ -n "$CLOUDFLARE_EMAIL" ]; then main
echo "CLOUDFLARE_EMAIL env var needs to be set. Add this field in the 'Secrets' section of your repo's settings."
exit 1
fi
npm i @cloudflare/wrangler -g
npm i
wrangler whoami
wrangler publish