Replace Woodpecker docs pipeline with Forgejo Actions #34
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The docs deployment pipeline in .woodpecker/docs.yml uses a Woodpecker-specific container and relies on a webhook to notify grebedoc.dev after pushing to the pages branch. Migrating to Forgejo Actions lets us use git-pages/action to upload directly to grebedoc, removing the webhook dependency and aligning the docs pipeline with the rest of CI.
Approach: single-job Forgejo Actions workflow triggered on tag push. Steps: full checkout (fetch-depth: 0 for mike), guard that tag is on main, install uv via curl, mike deploy --push to update pages branch, second checkout of pages branch into _site/, git-pages/action@v2 upload to wuming.marvin8.zone using forge.token (DNS allowlist already configured). Removes .woodpecker/docs.yml. No new secrets required.