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 #172

Merged
merged 3 commits into from
Jan 5, 2023
Merged
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
10 changes: 8 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
command: |
mkdir -p /tmp/fslicense
cd /tmp/fslicense
echo "cHJpbnRmICJrcnp5c3p0b2YuZ29yZ29sZXdza2lAZ21haWwuY29tXG41MTcyXG4gKkN2dW12RVYzelRmZ1xuRlM1Si8yYzFhZ2c0RVxuIiA+IGxpY2Vuc2UudHh0Cg==" | base64 -d | sh
echo "${FS_LICENSE_CONTENT}" | base64 -d > license.txt
- run:
name: Get codecov
command: python -m pip install codecov
Expand Down Expand Up @@ -174,7 +174,10 @@ jobs:

test_package:
docker:
- image: circleci/python:3.7.4
- image: cimg/python:3.9
auth:
username: $DOCKER_USER
password: $DOCKER_PAT
working_directory: /tmp/src/nitransforms
steps:
- checkout
Expand Down Expand Up @@ -224,6 +227,9 @@ jobs:
deploy_pypi:
docker:
- image: circleci/python:3.7.4
auth:
username: $DOCKER_USER
password: $DOCKER_PAT
working_directory: /tmp/src/nitransforms
steps:
- attach_workspace:
Expand Down