Skip to content

Commit

Permalink
chore: CICD Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
panpuchkov committed Dec 28, 2023
1 parent d474b4c commit 5d7c0a2
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,15 @@ jobs:
shell: bash
run: |
set -x
sudo apt-get -y install twine
pip install -r requirements-build.txt
python -m build
sudo apt-get -y install twine
twine check dist/*
twine upload --skip-existing -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} dist/* --verbose
#twine upload --skip-existing -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} dist/* --verbose
cd dist
pwd
tar -xf $(ls pygitver-*.gz)
tree
cd ..

0 comments on commit 5d7c0a2

Please sign in to comment.