常用 GitHub Actions 代码片段 2021-09-08 name: Deploy Backend on: push: branches: 'master' env: TZ: Asia/Shanghai jobs: build: runs-on: ubuntu-latest 如果需要 docker 镜像,可以在这里添加 steps: uses: acti ...
用 GitHub Actions 自动化发布 Hexo 网站到 GitHub Pages(转载) 2020-09-29 转载自:用GitHub Actions 自动化发布Hexo网站到GitHub Pages - 掘金 之前我已经习惯了自己在本地部署 Hexo 并 push,也写过一个一键 push 到博客部署仓库和博客仓库的 shell 脚本,如下: #!/bin/bash echo echo pus ...