在项目根目录下新建 .github
文件夹,在.github
文件夹下新建 workflows
文件夹。里面放一个及以上的 yml 文件即可。
以我常用的 Node.js 项目为例,有以下模板
# release.yml
name: Release
on:
push:
branches:
- master
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment # 设置 Node.js 环境
uses: actions/setup-node@v2.1.2
with:
node-version: "14"
- name: Cache multiple paths #设置缓存
uses: actions/cache@v2
with:
path: |
~/.npm
~/cache
!~/cache/exclude
**/node_modules
key: npm-${{ runner.os }}-${{ hashFiles('package.json') }}
- run: yarn
- run: npm run lint
- run: npm run build
- env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run release # release 依旧采用了我习惯的 semantic-release
其他语言也是类似的写法,差不多就这样,剩下的看官方文档就行了
- 本文链接: https://wp.cmyr.ltd/archives/github-actions-usage
- 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!
欢迎关注我的其它发布渠道
发表回复
要发表评论,您必须先登录。