Skip to content

Commit

Permalink
[FIX] distirbs stored in python/dist/
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreSchnizer committed Dec 16, 2024
1 parent 5760c7c commit 034b928
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pypi_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
path: python/dist/

publish-to-pypi:
name: Publish gtpsa distribution to PyPI
Expand All @@ -40,7 +40,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
path: python/dist/
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

Expand All @@ -59,11 +59,11 @@ jobs:
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
path: python/dist/
- name: Sign the dists with Sigstore
uses: sigstore/[email protected]
with:
inputs: ./dist/*.tar.gz
inputs: ./python/dist/*.tar.gz
- name: Create GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
path: python/dist/
- name: Publish distribution to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# emacs generated files
*~

.idea/
venv/
# build directory
build/
build_*/
build-*/

# Prerequisites
*.d
Expand Down

0 comments on commit 034b928

Please sign in to comment.