ci: drop obsolete gh-pages docs deploy workflow - #30
Merged
Conversation
The docs/ tooling (package.json, package-lock.json, docusaurus.config.js) was removed in 0363b58 when docs moved to the apigear-docs repo, but this workflow was left behind. Every v* tag push now fails at actions/setup-node, which aborts when cache-dependency-path matches no package-lock.json. Remove the dead workflow; docs are built and published from apigear-docs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Removes
.github/workflows/deploy-gh-pages.yml.Why
Pushing tag
v1.0.0triggered this workflow and it failed at theactions/setup-nodestep:The workflow builds
docs/as a standalone Docusaurus site(
npm ci+npm run build), but that tooling was deleted in0363b58(2024-04-11, "docs: integrate with the apigear-docsrepo") when docs moved to the central
apigear-docsrepository.docs/now contains only markdown + static assets — there is nopackage.json/package-lock.json, socache-dependency-path: ./docs/package-lock.jsonmatches no files and the step aborts.The workflow has effectively been dead since April 2024;
v1.0.0is just the first tag whose run still falls inside GitHub's log
retention window.
docs/README.mdconfirms docs are built fromthe
apigear-docsrepo, so this per-template GH Pages deploy isobsolete.
Verification
grep -rniE 'package-lock|npm ci|gh-pages|setup-node' .github/returns nothing after removal — no other workflow depends on it.