Compare commits

..

2 Commits

Author SHA1 Message Date
dante
77a0a5f1eb Update pypi.yml 2025-02-05 18:12:55 -05:00
dante
b2e5150c52 fix: ezkl-gpu name 2025-02-05 18:11:30 -05:00
2 changed files with 7 additions and 7 deletions

View File

@@ -95,7 +95,7 @@ jobs:
# needs: [ macos, windows, linux, linux-cross, musllinux, musllinux-cross ]
needs: [linux]
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: wheels
- name: List Files
@@ -109,7 +109,7 @@ jobs:
continue-on-error: true
uses: pypa/gh-action-pypi-publish@unstable/v1
with:
packages-dir: ./wheels
packages-dir: ./
# publishes to TestPyPI
- name: Publish package distribution to TestPyPI
@@ -117,4 +117,4 @@ jobs:
uses: pypa/gh-action-pypi-publish@unstable/v1
with:
repository-url: https://test.pypi.org/legacy/
packages-dir: ./wheels
packages-dir: ./

View File

@@ -347,11 +347,11 @@ jobs:
if: "startsWith(github.ref, 'refs/tags/')"
needs: [macos, windows, linux, musllinux, musllinux-cross]
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
pattern: dist-*
merge-multiple: true
path: wheels
path: dist
- name: List Files
run: ls -R
@@ -366,7 +366,7 @@ jobs:
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@unstable/v1
with:
packages-dir: ./wheels
packages-dir: ./
doc-publish:
@@ -377,7 +377,7 @@ jobs:
needs: pypi-publish
steps:
- uses: actions/checkout@v4
with:
with:
persist-credentials: false
- name: Trigger RTDs build
uses: dfm/rtds-action@v1