From 85d34df96f60d98efba806c08d2b2cba59f502cc Mon Sep 17 00:00:00 2001 From: frank <98238480+soundsonacid@users.noreply.github.com> Date: Mon, 29 Jan 2024 16:37:37 -0800 Subject: [PATCH] frank/update release workflow --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a6830a83..1da30755 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 }}