We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce67104 commit 644b5faCopy full SHA for 644b5fa
.github/workflows/build.yaml
@@ -5,6 +5,11 @@ env:
5
CI_BUILD_NUM: ${{ github.run_id }}
6
CI_BRANCH: ${{ github.ref_name }}
7
8
+permissions:
9
+ contents: write # semantic-release-dry verifies the write permissions
10
+ issues: read # needed by semantic-release
11
+ pull-requests: write # needed by semantic-release
12
+
13
jobs:
14
test:
15
name: Test
.releaserc.cjs
@@ -14,7 +14,7 @@ module.exports = {
}],
['@semantic-release/exec', {
16
prepareCmd: 'npm run deploy:ci && npm run test:postdeploy',
17
- publishCmd: 'npm run deploy:stage',
+ publishCmd: 'npm run deploy:prod',
18
successCmd: 'echo "${nextRelease.version}" > released.txt',
19
20
'@semantic-release/github',
0 commit comments