Skip to content

Commit 48c983d

Browse files
committed
fix(ci): Fix asset paths in release workflow
1 parent 87f4431 commit 48c983d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ jobs:
3636
uses: actions/upload-artifact@v4
3737
with:
3838
name: dist
39-
path: dist
39+
path: client/dist
4040
- name: Add wheel as release asset
4141
uses: actions/upload-release-asset@latest
4242
env:
4343
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4444
with:
4545
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 }}
4747
asset_name: ${{ steps.build.outputs.package_wheel }}
4848
asset_content_type: application/zip
4949
- name: Add sdist as release asset
@@ -52,7 +52,7 @@ jobs:
5252
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5353
with:
5454
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 }}
5656
asset_name: ${{ steps.build.outputs.package_sdist }}
5757
asset_content_type: application/zip
5858
# Docs
@@ -85,8 +85,8 @@ jobs:
8585
- name: Publish distribution 📦 to Test PyPI
8686
uses: pypa/gh-action-pypi-publish@release/v1
8787
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/
9090
- name: Publish distribution 📦 to PyPI
9191
uses: pypa/gh-action-pypi-publish@release/v1
9292
with:

0 commit comments

Comments
 (0)