ci: migrate from CircleCI to GitHub Actions - #321
Merged
Conversation
CircleCI has been unable to check out the repository since its checkout key stopped working, so nothing has been deployed since 2023-10. Replace it with GitHub Actions and publish through the Pages deployment API instead of committing the build output to the master branch. - add .github/workflows/deploy.yml (build on every push/PR, deploy to Pages on source) - drop .circleci/config.yml and update.sh - drop rimraf and status-back, only used by the two files above - bump .node-version from 8.1.4 to 24, the current LTS - fix bulbofile.js for the ESM majors of gulp-nunjucks and gulp-markdown pulled in by #312 and #313, which broke the build - emit CNAME into build/ so the custom domain survives in the artifact
nodejs.jp turns out to be served by Netlify out of the master branch, not by GitHub Pages, so deploying through the Pages API would not touch the live site. Replace the Pages deploy job with one that builds into a checkout of master and pushes, which is what update.sh did under CircleCI.
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.
CI を CircleCI から GH Actions へ移行