Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
juaduan committed Jul 8, 2024
1 parent 4e31951 commit b12d065
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/
path: ./wheelhouse/
- name: Publish distribution 📦 to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand All @@ -61,7 +61,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: dist/
path: ./wheelhouse/

github-release:
name: >-
Expand All @@ -80,13 +80,13 @@ jobs:
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/
path: ./wheelhouse/
- name: Sign the dists with Sigstore
uses: sigstore/[email protected]
with:
inputs: >-
./dist/*.tar.gz
./dist/*.whl
# ./dist/*.tar.gz
./wheelhouse/*.whl
- name: Create GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
Expand All @@ -103,5 +103,5 @@ jobs:
# sigstore-produced signatures and certificates.
run: >-
gh release upload
'${{ github.ref_name }}' dist/**
'${{ github.ref_name }}' ./wheelhouse/**
--repo '${{ github.repository }}'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ dependencies = [
where = ["src"]

[tool.cibuildwheel]
skip = "pp*"
build = ["cp3.10-*"]

0 comments on commit b12d065

Please sign in to comment.