diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0290350..5642566 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -51,8 +51,6 @@ jobs: needs: build runs-on: ubuntu-latest environment: pypi - permissions: - id-token: write # required for OIDC trusted publishing steps: - name: Download build artifacts @@ -63,6 +61,9 @@ jobs: - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1 + with: + password: ${{ secrets.PYPI_TOKEN }} + verbose: true # ── 4. Create GitHub Release and attach artifacts ─────────────────────────── github-release: diff --git a/pyproject.toml b/pyproject.toml index 728d782..cd5b730 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "python-snacks" -version = "0.1.2" +version = "0.1.3" description = "A CLI tool for managing a personal stash of reusable Python code snippets." readme = "README.md" requires-python = ">=3.10"