28 lines
777 B
YAML
28 lines
777 B
YAML
|
name: Upload to AWS S3
|
||
|
|
||
|
|
||
|
inputs:
|
||
|
source:
|
||
|
required: true
|
||
|
type: string
|
||
|
|
||
|
destination:
|
||
|
required: true
|
||
|
type: string
|
||
|
|
||
|
|
||
|
runs:
|
||
|
using: composite
|
||
|
steps:
|
||
|
- name: Upload to S3
|
||
|
if: >-
|
||
|
(github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'adafruit') ||
|
||
|
(github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
||
|
run: |
|
||
|
pip install awscli
|
||
|
[ -z "$AWS_ACCESS_KEY_ID" ] || aws s3 cp bin/ s3://adafruit-circuit-python/bin/ --recursive --no-progress --region us-east-1
|
||
|
env:
|
||
|
AWS_PAGER: ''
|
||
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|