From b6769e343a1872a8d29bc46493ffe9b2c512b302 Mon Sep 17 00:00:00 2001 From: Nate Sesti Date: Wed, 6 Sep 2023 14:40:42 -0700 Subject: ci: :green_heart: publish to pypi in ci --- .github/workflows/main.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to '.github/workflows/main.yaml') diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 49dde09c..0c39c56f 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -6,6 +6,31 @@ on: - main jobs: + pypi-deployment: + runs-on: ubuntu-20.04 + steps: + - name: Check out code + uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.10" + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install poetry + + - name: Install project dependencies + run: cd continuedev && poetry install + + - name: Configure Poetry Token + run: cd continuedev && poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }} + + - name: Build and publish the package + run: cd continuedev && poetry publish --build + pyinstaller: strategy: matrix: -- cgit v1.2.3-70-g09d2