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 b19c003 commit c226d40Copy full SHA for c226d40
.github/workflows/python-package.yml
@@ -49,8 +49,15 @@ jobs:
49
permissions:
50
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
51
steps:
52
- # retrieve your distributions here
53
-
+ - uses: actions/checkout@v3
+ - name: Set up Python
54
+ uses: actions/setup-python@v3
55
+ with:
56
+ python-version: '3.x'
57
+ - name: Install build dependencies
58
+ run: python -m pip install --upgrade pip setuptools wheel
59
+ - name: Build package
60
+ run: python setup.py sdist bdist_wheel
61
- name: Publish package
62
env:
63
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
0 commit comments