diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a6830a8..1da3075 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,6 +9,9 @@ jobs: - name: Checkout uses: actions/checkout@v2.5.0 + - name: Change to SDK directory + run: cd python + - name: Set up Python uses: actions/setup-python@v4.3.0 with: @@ -23,5 +26,7 @@ jobs: virtualenvs-create: true virtualenvs-in-project: true installer-parallel: true + + # The following steps will now execute in the python/sdk directory - run: poetry build - run: poetry publish --username=__token__ --password=${{ secrets.PYPI_TOKEN }}