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 82361ea commit ae803c9Copy full SHA for ae803c9
.github/workflows/codeql-analysis.yml
@@ -1,10 +1,8 @@
1
name: "CodeQL"
2
3
on:
4
- push:
5
- branches: [ main, master ]
6
- pull_request:
7
+ release:
+ types: [created]
8
9
jobs:
10
analyze:
@@ -14,7 +12,7 @@ jobs:
14
12
strategy:
15
13
fail-fast: false
16
matrix:
17
- language: [ 'python' ]
+ language: ['python']
18
19
steps:
20
- name: Checkout repository
.github/workflows/publish.yml
@@ -23,6 +23,5 @@ jobs:
23
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
24
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
25
run: |
26
- python setup.py build_ext --inplace
27
- python setup.py sdist bdist_wheel
+ python setup.py sdist
28
twine upload dist/*
0 commit comments