Skip to content

Commit 5d89acb

Browse files
committed
fix: rotate CircleCI secrets
1 parent 50dd27c commit 5d89acb

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.circleci/config.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
command: |
139139
mkdir -p /tmp/fslicense
140140
cd /tmp/fslicense
141-
echo "cHJpbnRmICJrcnp5c3p0b2YuZ29yZ29sZXdza2lAZ21haWwuY29tXG41MTcyXG4gKkN2dW12RVYzelRmZ1xuRlM1Si8yYzFhZ2c0RVxuIiA+IGxpY2Vuc2UudHh0Cg==" | base64 -d | sh
141+
echo "${FS_LICENSE_CONTENT}" | base64 -d | sh
142142
- run:
143143
name: Get codecov
144144
command: python -m pip install codecov
@@ -175,6 +175,9 @@ jobs:
175175
test_package:
176176
docker:
177177
- image: circleci/python:3.7.4
178+
auth:
179+
username: $DOCKER_USER
180+
password: $DOCKER_PAT
178181
working_directory: /tmp/src/nitransforms
179182
steps:
180183
- checkout
@@ -224,6 +227,9 @@ jobs:
224227
deploy_pypi:
225228
docker:
226229
- image: circleci/python:3.7.4
230+
auth:
231+
username: $DOCKER_USER
232+
password: $DOCKER_PAT
227233
working_directory: /tmp/src/nitransforms
228234
steps:
229235
- attach_workspace:

0 commit comments

Comments
 (0)