Created
September 15, 2022 19:00
-
-
Save douglascayers/03c822ca34e60d6c4150ac5c065255ef to your computer and use it in GitHub Desktop.
Shell script to set CircleCI project environment variables
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Export `CIRCLECI_API_TOKEN` env var by creating your own api token | |
# https://app.circleci.com/settings/user/tokens | |
ORG_NAME="changeme" | |
REPO_NAME="changeme" | |
PROJECT_SLUG="github/${ORG_NAME}/${REPO_NAME}" | |
ENV_KEY="FOO" | |
ENV_VAL="42" | |
curl -X POST \ | |
-H "Circle-Token: ${CIRCLECI_API_TOKEN}" \ | |
-H "Content-Type: application/json" \ | |
-d '{ "name": "'${ENV_KEY}'", "value": "'${ENV_VAL}'" }' \ | |
"https://circleci.com/api/v2/project/${PROJECT_SLUG}/envvar" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment