10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb2dbf4 commit 0515053Copy full SHA for 0515053
.github/workflows/build.yml
@@ -242,7 +242,7 @@ jobs:
242
zip -9r circuitpython-stubs.zip circuitpython-stubs
243
[ -z "$AWS_ACCESS_KEY_ID" ] || aws s3 cp circuitpython-stubs/dist/*.tar.gz s3://adafruit-circuit-python/bin/stubs/circuitpython-stubs-${{ env.CP_VERSION }}.zip --no-progress --region us-east-1
244
- name: Upload stubs to PyPi
245
- if: github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'adafruit'
+ 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'))
246
env:
247
TWINE_USERNAME: ${{ secrets.pypi_username }}
248
TWINE_PASSWORD: ${{ secrets.pypi_password }}
0 commit comments