Skip to content

Commit 8d91da7

Browse files
authored
Explicitly Use dist as Artifacts Path (#68)
* Explicitly Use `dist` for Artifacts Path
1 parent 8b1a401 commit 8d91da7

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/package.yml

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

.github/workflows/publish_on_merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/download-artifact@v3
1616
with:
17-
name: dist_dir
17+
path: dist
1818
- name: Publish the Package on TestPyPI
1919
uses: pypa/gh-action-pypi-publish@release/v1
2020
with:

.github/workflows/publish_on_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/download-artifact@v3
1616
with:
17-
name: dist_dir
17+
path: dist
1818
- name: Publish the Package
1919
if: startsWith(github.ref, 'refs/tags')
2020
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)