@@ -36,14 +36,14 @@ jobs:
36
36
uses : actions/upload-artifact@v4
37
37
with :
38
38
name : dist
39
- path : dist
39
+ path : client/ dist
40
40
- name : Add wheel as release asset
41
41
uses : actions/upload-release-asset@latest
42
42
env :
43
43
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
44
44
with :
45
45
upload_url : ${{ github.event.release.upload_url }}
46
- asset_path : dist/${{ steps.build.outputs.package_wheel }}
46
+ asset_path : client/ dist/${{ steps.build.outputs.package_wheel }}
47
47
asset_name : ${{ steps.build.outputs.package_wheel }}
48
48
asset_content_type : application/zip
49
49
- name : Add sdist as release asset
52
52
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
53
53
with :
54
54
upload_url : ${{ github.event.release.upload_url }}
55
- asset_path : dist/${{ steps.build.outputs.package_sdist }}
55
+ asset_path : client/ dist/${{ steps.build.outputs.package_sdist }}
56
56
asset_name : ${{ steps.build.outputs.package_sdist }}
57
57
asset_content_type : application/zip
58
58
# Docs
85
85
- name : Publish distribution 📦 to Test PyPI
86
86
uses : pypa/gh-action-pypi-publish@release/v1
87
87
with :
88
- skip-existing : true # tolerate release package file duplicates
89
- repository-url : https://test.pypi.org/legacy/
88
+ skip-existing : true # tolerate release package file duplicates
89
+ repository-url : https://test.pypi.org/legacy/
90
90
- name : Publish distribution 📦 to PyPI
91
91
uses : pypa/gh-action-pypi-publish@release/v1
92
92
with :
0 commit comments