Skip to content

Commit 130e51d

Browse files
committed
Fix to workflow path
1 parent 3dbec09 commit 130e51d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/python-package.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
GITHUB_TOKEN: ${{ github.token }}
119119
run: >-
120120
gh release upload
121-
'${{ github.ref_name }}' ./wheelhouse/artifact/**
121+
'${{ github.ref_name }}' ./wheelhouse/**
122122
--repo '${{ github.repository }}'
123123
124124
publish-test:
@@ -141,11 +141,14 @@ jobs:
141141
with:
142142
name: wheels
143143
path: ./wheelhouse/
144+
145+
- name: Print wheel content
146+
run: ls ./wheelhouse
144147

145148
- name: Publish wheels to test-pypi
146149
uses: pypa/gh-action-pypi-publish@release/v1
147150
with:
148-
packages-dir: ./wheelhouse/artifact
151+
packages-dir: ./wheelhouse/
149152
repository-url: https://test.pypi.org/legacy/
150153

151154
publish-release:
@@ -172,4 +175,4 @@ jobs:
172175
- name: Publish wheels to test-pypi
173176
uses: pypa/gh-action-pypi-publish@release/v1
174177
with:
175-
packages-dir: ./wheelhouse/artifact
178+
packages-dir: ./wheelhouse/

0 commit comments

Comments
 (0)