mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-25 11:24:46 +01:00
add secrets publishing
This commit is contained in:
parent
1202bb2fe9
commit
3123fc538b
3 changed files with 44 additions and 7 deletions
18
README.md
18
README.md
|
@ -93,6 +93,24 @@ jobs:
|
||||||
workingDirectory: 'subfoldername'
|
workingDirectory: 'subfoldername'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
[Worker secrets](https://developers.cloudflare.com/workers/tooling/wrangler/secrets/) can be optionally passed as a new line deliminated string of names in `secrets`. Each secret name must match an environment variable name specified in the `env` attribute. Creates or replaces the value for the Worker secret using the `wrangler secret put` command.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
steps:
|
||||||
|
uses: cloudflare/wrangler-action@1.1.0
|
||||||
|
with:
|
||||||
|
apiToken: ${{ secrets.CF_API_TOKEN }}
|
||||||
|
workingDirectory: 'subfoldername'
|
||||||
|
secrets: |
|
||||||
|
SECRET1
|
||||||
|
SECRET2
|
||||||
|
env:
|
||||||
|
SECRET1: ${{ secrets.SECRET1 }}
|
||||||
|
SECRET2: ${{ secrets.SECRET2 }}
|
||||||
|
```
|
||||||
|
|
||||||
## Use cases
|
## Use cases
|
||||||
|
|
||||||
### Deploying when commits are merged to master
|
### Deploying when commits are merged to master
|
||||||
|
|
15
action.yml
15
action.yml
|
@ -1,11 +1,11 @@
|
||||||
name: 'Deploy to Cloudflare Workers with Wrangler'
|
name: "Deploy to Cloudflare Workers with Wrangler"
|
||||||
branding:
|
branding:
|
||||||
icon: 'upload-cloud'
|
icon: "upload-cloud"
|
||||||
color: 'orange'
|
color: "orange"
|
||||||
description: 'Deploy your Cloudflare Workers applications and sites directly from GitHub, using Wrangler'
|
description: "Deploy your Cloudflare Workers applications and sites directly from GitHub, using Wrangler"
|
||||||
runs:
|
runs:
|
||||||
using: 'docker'
|
using: "docker"
|
||||||
image: 'Dockerfile'
|
image: "Dockerfile"
|
||||||
inputs:
|
inputs:
|
||||||
apiKey:
|
apiKey:
|
||||||
description: "(Legacy) Your Cloudflare API Key"
|
description: "(Legacy) Your Cloudflare API Key"
|
||||||
|
@ -19,3 +19,6 @@ inputs:
|
||||||
description: "The relative path which Wrangler commands should be run from"
|
description: "The relative path which Wrangler commands should be run from"
|
||||||
wranglerVersion:
|
wranglerVersion:
|
||||||
description: "The version of Wrangler you'd like to use to publish your Workers project"
|
description: "The version of Wrangler you'd like to use to publish your Workers project"
|
||||||
|
secrets:
|
||||||
|
description: "A new line deliminated string of environment variable names that should be configured as Worker secrets"
|
||||||
|
required: false
|
||||||
|
|
|
@ -58,12 +58,28 @@ then
|
||||||
cd "$INPUT_WORKINGDIRECTORY"
|
cd "$INPUT_WORKINGDIRECTORY"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# If an environment is detected as input
|
secret_not_found() {
|
||||||
|
echo "::error::Specified secret \"$1\" not found in environment variables."
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# If an environment is detected as input, for each secret specified get the value of
|
||||||
|
# the matching named environment variable then configure using wrangler secret put.
|
||||||
if [ -z "$INPUT_ENVIRONMENT" ]
|
if [ -z "$INPUT_ENVIRONMENT" ]
|
||||||
then
|
then
|
||||||
wrangler publish
|
wrangler publish
|
||||||
|
|
||||||
|
for SECRET in $INPUT_SECRETS; do
|
||||||
|
VALUE=$(printenv "$SECRET") || secret_not_found "$SECRET"
|
||||||
|
echo "$VALUE" | wrangler secret put "$SECRET"
|
||||||
|
done
|
||||||
else
|
else
|
||||||
wrangler publish -e "$INPUT_ENVIRONMENT"
|
wrangler publish -e "$INPUT_ENVIRONMENT"
|
||||||
|
|
||||||
|
for SECRET in $INPUT_SECRETS; do
|
||||||
|
VALUE=$(printenv "$SECRET") || secret_not_found "$SECRET"
|
||||||
|
echo "$VALUE" | wrangler secret put "$SECRET" --env "$INPUT_ENVIRONMENT"
|
||||||
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# If a working directory is detected as input, revert to the
|
# If a working directory is detected as input, revert to the
|
||||||
|
|
Loading…
Reference in a new issue