diff --git a/.github/workflows/manual_cd.yml b/.github/workflows/manual_cd.yml deleted file mode 100644 index 5e6b2cf..0000000 --- a/.github/workflows/manual_cd.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Manual CD - -on: - workflow_dispatch: {} - -jobs: - build: - name: Manual CD - Build and publish - runs-on: "ubuntu-24.04" - - steps: - - uses: actions/checkout@v4 - - - uses: astral-sh/setup-uv@v5 - - - uses: actions/setup-python@v5 - with: - python-version-file: ".python-version" - - - name: Setup venv - run: | - uv venv - uv sync --all-extras - - - name: Build - run: | - uv build - - - name: "Publish" - run: | - uv publish - env: - UV_PUBLISH_TOKEN: ${{ secrets.PYPI_TOKEN }}