From c560d0ffcee21b46cd424adfcbbc3aebed6deb07 Mon Sep 17 00:00:00 2001 From: Ryan Gilbert Date: Mon, 27 Oct 2025 17:10:37 -0400 Subject: [PATCH] Delete .github/workflows/publish.yml --- .github/workflows/publish.yml | 41 ----------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index c527d91..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: Release to PyPI - -on: - release: - types: [published] - -jobs: - deploy: - runs-on: ubuntu-latest - environment: - name: pypi - url: https://pypi.org/p/cdp-sdk - permissions: - contents: read - id-token: write - - steps: - - uses: actions/checkout@v3 - - - name: Set up Python 3.10 - uses: actions/setup-python@v4 - with: - python-version: '3.10' - - - name: Install Poetry - uses: snok/install-poetry@v1 - with: - version: latest - virtualenvs-create: true - virtualenvs-in-project: true - - - name: Install dependencies - run: poetry install --only main - - - name: Build package - run: poetry build - - - name: Publish package - uses: pypa/gh-action-pypi-publish@release/v1 - with: - password: ${{ secrets.PYPI_API_TOKEN }}