Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAINT: Rotate CircleCI secrets and setup up org-level context #195

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ jobs:
command: |
mkdir -p /tmp/fslicense
cd /tmp/fslicense
echo "cHJpbnRmICJrcnp5c3p0b2YuZ29yZ29sZXdza2lAZ21haWwuY29tXG41MTcyXG4gKkN2dW12RVYzelRmZ1xuRlM1Si8yYzFhZ2c0RVxuIiA+IGxpY2Vuc2UudHh0Cg==" | base64 -d | sh
echo "${FS_LICENSE_CONTENT}" | base64 -d | sh
- run:
name: Create Nipype config files
command: |
Expand Down Expand Up @@ -717,6 +717,8 @@ workflows:
build_test_deploy:
jobs:
- build:
context:
- nipreps-common
filters:
branches:
ignore:
Expand All @@ -725,6 +727,8 @@ workflows:
only: /.*/

- get_data:
context:
- fs-license
filters:
branches:
ignore:
Expand Down Expand Up @@ -759,6 +763,8 @@ workflows:
tags:
only: /.*/
- test_deploy_pypi:
context:
- nipreps-common
filters:
branches:
only:
Expand All @@ -768,6 +774,8 @@ workflows:
only: /.*/

- deploy_docker_patches:
context:
- nipreps-common
requires:
- build
filters:
Expand All @@ -786,6 +794,8 @@ workflows:
only: /.*/

- deploy_docker:
context:
- nipreps-common
requires:
- deployable
filters:
Expand All @@ -795,6 +805,8 @@ workflows:
only: /.*/

- deploy_pypi:
context:
- nipreps-common
requires:
- deployable
filters:
Expand Down