diff --git a/.github/workflows/cli-docker-image.yml b/.github/workflows/cli-docker-image.yml index 5bd6775..d73bc04 100644 --- a/.github/workflows/cli-docker-image.yml +++ b/.github/workflows/cli-docker-image.yml @@ -25,10 +25,15 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install build + pip install build twine - name: Build the package - run: python -m build --outdir CLI/dist CLI + run: | + cd CLI + python -m build --outdir dist + + - name: List dist directory contents + run: ls -R CLI/dist - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1