From a33b79fe9c554f0224b820f093aad807ca4bf69f Mon Sep 17 00:00:00 2001 From: "Francesca L. Bleken" <48128015+francescalb@users.noreply.github.com> Date: Fri, 25 Oct 2024 14:30:25 +0200 Subject: [PATCH] Corrected publishing info (#792) # Description There was a wrong reference to the folder in which the artefact is found. The correction is made looking at oteapi-dlite as example ## Type of change - [ ] Bug fix. - [ ] New feature. - [ ] Documentation update. - [ ] Test update. ## Checklist This checklist can be used as a help for the reviewer. - [ ] Is the code easy to read and understand? - [ ] Are comments for humans to read, not computers to disregard? - [ ] Does a new feature has an accompanying new test (in the CI or unit testing schemes)? - [ ] Has the documentation been updated as necessary? - [ ] Does this close the issue? - [ ] Is the change limited to the issue? - [ ] Are errors handled for all outcomes? - [ ] Does the new feature provide new restrictions on dependencies, and if so is this documented? ## Comments --- .github/workflows/cd_publish.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/cd_publish.yml b/.github/workflows/cd_publish.yml index 06c103178..800466880 100644 --- a/.github/workflows/cd_publish.yml +++ b/.github/workflows/cd_publish.yml @@ -51,10 +51,7 @@ jobs: uses: actions/download-artifact@v4 with: name: dist # The artifact will always be called 'dist' - path: my-dists + path: dist - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1 - with: - # The path to the distribution to upload - package-dir: my-dists