# github action GitHub 于2018年10月推出了持续集成功能 `GitHub Actions`,使用 yaml 格式的语法配置.可以参考软老师的博客 ``` https://www.ruanyifeng.com/blog/2019/09/getting-started-with-github-actions.html ``` ## github pages github 提供了一个免费的网页托管功能,帮助开发展示自己的项目和文档,这项功能我们干许多有意思的事情 * 前端项目效果展示 * 项目官方网址 * 文档展示 * 个人博客,项目博客 本页面的图管功能也是 `github pages` 功能提供,通过 `github action` 的方式将 `markdown`文档转化成静态资源页面,见 ``` https://github.com/hellojukay/github-guide/actions ``` ```yaml 4 directories, 18 files hellojukay@local github-guide (main) $ tree .github/ .github/ └── workflows └── gh-pages.yml ```