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 9dd7e56 commit da74204Copy full SHA for da74204
.github/workflows/release.yml renamed to .github/workflows/release_gh.yml
.github/workflows/release_pypi.yml
@@ -0,0 +1,19 @@
1
+# SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries
2
+#
3
+# SPDX-License-Identifier: MIT
4
+
5
+name: PyPI Release Actions
6
7
+on:
8
+ release:
9
+ types: [published]
10
11
+jobs:
12
+ upload-release-assets:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Run PyPI Release CI workflow
16
+ uses: adafruit/workflows-circuitpython-libs/release-pypi@main
17
+ with:
18
+ pypi-username: ${{ secrets.pypi_username }}
19
+ pypi-password: ${{ secrets.pypi_password }}
0 commit comments