Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.

Commit 548ec9b

Browse files
authored
Resolve Artifacts Upload/Download Issue (#69)
1 parent 8d91da7 commit 548ec9b

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

.github/workflows/package.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,6 @@ jobs:
2121
run: python -m build
2222
- uses: actions/upload-artifact@v3
2323
with:
24+
name: dist
2425
path: dist
2526
retention-days: 1

.github/workflows/publish_on_merge.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/download-artifact@v3
16-
with:
17-
path: dist
1816
- name: Publish the Package on TestPyPI
1917
uses: pypa/gh-action-pypi-publish@release/v1
2018
with:

.github/workflows/publish_on_release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/download-artifact@v3
16-
with:
17-
path: dist
1816
- name: Publish the Package
1917
if: startsWith(github.ref, 'refs/tags')
2018
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)