Skip to content

Commit

Permalink
attempt to figure out publish issues
Browse files Browse the repository at this point in the history
  • Loading branch information
barrust committed Sep 5, 2022
1 parent 8563d00 commit ecbb34a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Expand Up @@ -20,13 +20,13 @@ jobs:
python-version: '3.x'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade build
python3 -m pip install --upgrade twine
python -m pip install --upgrade pip
pip install --upgrade twine build
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python3 -m build
python3 -m twine upload dist/*
python -m build
twine check dist/*
twine upload dist/*

0 comments on commit ecbb34a

Please sign in to comment.