File tree Expand file tree Collapse file tree 3 files changed +38
-0
lines changed
Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+ branches :
9+ - master
10+
11+ jobs :
12+ semantic-release :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - uses : actions/checkout@v2
16+
17+ - name : Run semantic-release
18+ if : github.repository == 'casbin/lua-casbin' && github.event_name == 'push'
19+ run : |
20+ export PATH="$(yarn global bin):$PATH"
21+ yarn global add semantic-release
22+ semantic-release
23+ env :
24+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1+ {
2+ "debug" : true ,
3+ "release" : {
4+ "branches" : [
5+ " master"
6+ ]
7+ },
8+ "plugins" : [
9+ " @semantic-release/commit-analyzer" ,
10+ " @semantic-release/release-notes-generator" ,
11+ " @semantic-release/github"
12+ ]
13+ }
Original file line number Diff line number Diff line change 11# lua-casbin
22[ ![ GitHub Action] ( https://github.com/casbin/lua-casbin/workflows/build/badge.svg?branch=master )] ( https://github.com/casbin/lua-casbin/actions )
33[ ![ Coverage Status] ( https://coveralls.io/repos/github/casbin/lua-casbin/badge.svg?branch=master )] ( https://coveralls.io/github/casbin/lua-casbin?branch=master )
4+ [ ![ semantic-release] ( https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg )] ( https://github.com/semantic-release/semantic-release )
45[ ![ Gitter] ( https://badges.gitter.im/Join%20Chat.svg )] ( https://gitter.im/casbin/lobby )
56
67An authorization library that supports access control models like ACL, RBAC, ABAC in Lua (OpenResty)
You can’t perform that action at this time.
0 commit comments