Skip to content

Commit b7cb223

Browse files
committed
feat: GHA - release: correct dist directory path
Signed-off-by: Michal Fiedorowicz <mfiedorowicz@netboxlabs.com>
1 parent 68bf79d commit b7cb223

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,13 +144,13 @@ jobs:
144144
uses: actions/upload-artifact@v4
145145
with:
146146
name: ${{ env.PYTHON_PACKAGE_NAME }}-${{ env.BUILD_VERSION }}.tar.gz
147-
path: ./dist/${{ env.PYTHON_PACKAGE_NAME }}-${{ env.BUILD_VERSION }}.tar.gz
147+
path: dist/${{ env.PYTHON_PACKAGE_NAME }}-${{ env.BUILD_VERSION }}.tar.gz
148148
retention-days: 30
149149
if-no-files-found: error
150150
- name: Publish release distributions to PyPI
151151
uses: pypa/gh-action-pypi-publish@release/v1
152152
with:
153-
packages-dir: ./dist
153+
packages-dir: dist
154154

155155
semantic-release:
156156
name: Semantic release

0 commit comments

Comments
 (0)