Skip to content

Commit 1e3ea0a

Browse files
committed
ci: add missing checkout
Signed-off-by: Zxilly <[email protected]>
1 parent 165cfbc commit 1e3ea0a

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

Diff for: .github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ jobs:
4848
runs-on: ubuntu-latest
4949
if: github.repository == 'node-casbin/nest-authz' && github.event_name == 'push'
5050
steps:
51+
- uses: actions/checkout@v2
5152
- name: Use Node.js
5253
uses: actions/setup-node@v2
5354
with:

Diff for: .releaserc.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"debug": true,
3+
"plugins": [
4+
"@semantic-release/commit-analyzer",
5+
"@semantic-release/release-notes-generator",
6+
"@semantic-release/npm",
7+
[
8+
"@semantic-release/changelog",
9+
{
10+
"changelogFile": "CHANGELOG.md"
11+
}
12+
],
13+
[
14+
"@semantic-release/git",
15+
{
16+
"assets": ["package.json", "CHANGELOG.md"],
17+
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
18+
}
19+
],
20+
"@semantic-release/github"
21+
]
22+
}

0 commit comments

Comments
 (0)