Skip to content

Commit

Permalink
Switch CI too
Browse files Browse the repository at this point in the history
Signed-off-by: Alexis Jeandet <[email protected]>
  • Loading branch information
jeandet committed Jun 10, 2024
1 parent 6bc3e21 commit 890d767
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install build wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
python -m build .
twine upload dist/*
4 changes: 2 additions & 2 deletions .github/workflows/test_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
- name: Check that release process is not broken
if: matrix.python-version == '3.10'
run: |
pip install setuptools wheel twine
python setup.py sdist bdist_wheel
pip install build wheel twine
python -m build .
twine check dist/*
- name: Test with pytest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
- name: Check that release process is not broken
if: matrix.python-version == '3.10'
run: |
pip install setuptools wheel twine
python setup.py sdist bdist_wheel
pip install build wheel twine
python -m build .
twine check dist/*
- name: Test with pytest
Expand Down

0 comments on commit 890d767

Please sign in to comment.