Skip to content

Commit

Permalink
Gg/fix source dist name (#430)
Browse files Browse the repository at this point in the history
* build testing

* fix typo

* testing stuff

* testing stuff

* source only testing

* More complete testing

* Revert version tweak

* Remove redundant pip install
  • Loading branch information
genzgd authored Nov 23, 2024
1 parent ebacbf6 commit 2aee21e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,14 @@ jobs:
if: ${{ inputs.publish_type != 'build' }}
steps:
- uses: actions/checkout@v4
- name: Set up Python (3.12)
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install Dependencies
run: |
pip install twine
pip install -U setuptools
- name: Build source distribution
run: |
rm -rf dist
Expand All @@ -156,8 +164,6 @@ jobs:
run: |
cp -R wheelhouse/*.whl dist
ls -R dist
- name: Install Twine
run: pip install twine
- name: Publish (Release)
if: ${{ inputs.publish_type == 'release' }}
env:
Expand Down

0 comments on commit 2aee21e

Please sign in to comment.