Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/update-index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
environment: deploy-index
permissions:
contents: write
pages: write
Copy link

Copilot AI Apr 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pages: write permission appears unnecessary for this workflow because deployment is done via peaceiris/actions-gh-pages, which pushes to the gh-pages branch using contents: write. Keeping pages: write expands GITHUB_TOKEN scope beyond what’s needed; consider removing it (or only adding it if migrating to the official Pages deployment actions that require pages/id-token permissions).

Suggested change
pages: write

Copilot uses AI. Check for mistakes.
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ Pre-built CUDA Python wheels for packages used by ComfyUI custom nodes. Spec-dri

## Package index

Wheels are served via PEP 503 index at the GitHub Pages URL for this repository.
Wheels are served via PEP 503 index at:

- `https://comfy-org.github.io/wheels/`
- `https://comfy-org.github.io/wheels/v2/`

GitHub Pages is published from the `gh-pages` branch by the `update-index` job after successful wheel releases, or by manually running `update-index.yml`.

## Adding a package

Expand Down