Skip to content

Commit

Permalink
CI: WIP fix for publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ajfabbri committed Jun 13, 2024
1 parent ebbd5ed commit a727e01
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,13 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install twine
- name: Install twine and build
working-directory: .
run: pip install twine
run: |
python --version
pip --version
pip install build
pip install twine
- name: Build package distributions
working-directory: .
run: python -m build
Expand Down

0 comments on commit a727e01

Please sign in to comment.