Skip to content

Commit

Permalink
fix pypi upload
Browse files Browse the repository at this point in the history
  • Loading branch information
fabien-marty committed May 30, 2023
1 parent 81d7510 commit e4a709f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ jobs:
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Deps install
run: |
pip install -r dev-requirements.txt
Expand All @@ -89,5 +93,8 @@ jobs:
run: |
python setup.py sdist
- name: Upload to PyPi
env:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
run: |
twine upload dist/*

0 comments on commit e4a709f

Please sign in to comment.