We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c84714 commit 94c0034Copy full SHA for 94c0034
.github/workflows/automated_release.yml
@@ -23,4 +23,19 @@ jobs:
23
with:
24
repo_token: "${{ secrets.GITHUB_TOKEN }}"
25
prerelease: false
26
- - uses: ./.github/actions/python-publish
+ - name: Set up Python
27
+ uses: actions/setup-python@v2
28
+ with:
29
+ python-version: '3.x'
30
+ - name: Install dependencies
31
+ run: |
32
+ python -m pip install --upgrade pip
33
+ pip install setuptools wheel twine
34
+ - name: Build and publish
35
+ env:
36
+ TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
37
+ TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
38
39
+ python setup.py sdist bdist_wheel
40
+ twine check dist/*
41
+ twine upload dist/*
0 commit comments