ci: configure workflows
This commit is contained in:
parent
8cffbe9ef6
commit
c40b1e8473
2 changed files with 8 additions and 2 deletions
7
.github/workflows/cd.yml
vendored
7
.github/workflows/cd.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
|||
linter:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: lts/*
|
||||
|
@ -27,7 +27,10 @@ jobs:
|
|||
needs: linter
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
# https://github.com/semantic-release/semantic-release/issues/2636
|
||||
with:
|
||||
persist-credentials: false
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: lts/*
|
||||
|
|
|
@ -18,6 +18,9 @@
|
|||
{
|
||||
"path": ".output/web-chat-{{nextRelease.version}}-chrome.zip"
|
||||
}
|
||||
],
|
||||
"labels": [
|
||||
"release"
|
||||
]
|
||||
},
|
||||
"@semantic-release/git"
|
||||
|
|
Loading…
Reference in a new issue