Skip to content

Commit

Permalink
Configure Circle CI workflows to use global context
Browse files Browse the repository at this point in the history
Instead of defining per-project environment variables (1),
using context (2) allows to define and use environment variables
globally in all projects.

References:
  (1) https://circleci.com/docs/2.0/env-vars
  (2) https://circleci.com/docs/2.0/contexts

GH-44
  • Loading branch information
arcticicestudio committed Nov 24, 2018
1 parent a70876d commit 8d87cb7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ workflows:
version: 2.1
build-multi-version:
jobs:
- nodejs-v8
- nodejs-v10
- nodejs-latest
- nodejs-v8:
context: nord-docs-ctx
- nodejs-v10:
context: nord-docs-ctx
- nodejs-latest:
context: nord-docs-ctx

0 comments on commit 8d87cb7

Please sign in to comment.