summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorDan Halbert <halbert@adafruit.com>2020-03-01 11:43:55 -0500
committerGitHub <noreply@github.com>2020-03-01 11:43:55 -0500
commit752881461733263cae77db8c33a2da142a046f7e (patch)
tree320033158670899b23de2c851cf83d4dd2c5e49c /.github/workflows
parent1b33cd11fc788bd6b45b54c5629a3b98a92efc2a (diff)
parent98a03fc93534a22d11c0a6a50f9982c397232ad3 (diff)
Merge pull request #2664 from dhalbert/downloads-from-s3
Download links from S3; Do not upload release assets to GitHub
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml10
1 files changed, 0 insertions, 10 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 118135850..32c949a3a 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -273,13 +273,3 @@ jobs:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
if: github.event_name == 'push' || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
- - name: Install upload deps
- run: |
- pip install uritemplate
- - name: Upload to Release
- run: "[ -z \"$ADABOT_GITHUB_ACCESS_TOKEN\" ] || python3 -u upload_release_files.py"
- working-directory: tools
- env:
- UPLOAD_URL: ${{ github.event.release.upload_url }}
- ADABOT_GITHUB_ACCESS_TOKEN: ${{ secrets.BLINKA_GITHUB_ACCESS_TOKEN }}
- if: github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested')