Skip to content

Instantly share code, notes, and snippets.

@douglascayers
Created September 15, 2022 19:00
Show Gist options
  • Save douglascayers/03c822ca34e60d6c4150ac5c065255ef to your computer and use it in GitHub Desktop.
Save douglascayers/03c822ca34e60d6c4150ac5c065255ef to your computer and use it in GitHub Desktop.
Shell script to set CircleCI project environment variables
#!/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