File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ jobs:
190
190
name : ${{ matrix.board }}
191
191
path : bin/${{ matrix.board }}
192
192
- name : Upload to S3
193
- run : aws s3 cp bin/ s3://adafruit-circuit-python/bin/ --recursive --no-progress --region us-east-1
193
+ run : " [ -z \" $AWS_ACCESS_KEY_ID \" ] || aws s3 cp bin/ s3://adafruit-circuit-python/bin/ --recursive --no-progress --region us-east-1"
194
194
env :
195
195
AWS_ACCESS_KEY_ID : ${{ secrets.AWS_ACCESS_KEY_ID }}
196
196
AWS_SECRET_ACCESS_KEY : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
@@ -199,7 +199,7 @@ jobs:
199
199
run : |
200
200
pip install uritemplate
201
201
- name : Upload to Release
202
- run : python3 -u upload_release_files.py
202
+ run : " [ -z \" $ADABOT_GITHUB_ACCESS_TOKEN \" ] || python3 -u upload_release_files.py"
203
203
working-directory : tools
204
204
env :
205
205
UPLOAD_URL : ${{ github.event.release.upload_url }}
You can’t perform that action at this time.
0 commit comments