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 6cdc223 commit 52e95a3Copy full SHA for 52e95a3
.github/workflows/release.yml
@@ -3,9 +3,9 @@ name: Release
3
on:
4
# Support manually pushing a new release
5
workflow_dispatch: {}
6
- # Trigger when a release is published
+ # Trigger when a release or pre-release is published
7
release:
8
- types: [released]
+ types: [published]
9
10
defaults:
11
run:
@@ -20,7 +20,7 @@ jobs:
20
- uses: actions/setup-python@v5
21
with:
22
python-version: ${{ matrix.python }}
23
- cache: 'pip'
+ cache: "pip"
24
cache-dependency-path: setup.py
25
26
- name: Install dependencies
@@ -34,7 +34,7 @@ jobs:
34
- name: Publish
35
env:
36
TWINE_NON_INTERACTIVE: true
37
- TWINE_USERNAME: '__token__'
+ TWINE_USERNAME: "__token__"
38
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
39
run: |
40
python setup.py sdist bdist_wheel
0 commit comments