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 f8036f1 commit e0889aeCopy full SHA for e0889ae
.github/workflows/staging-step-1.yml
@@ -296,6 +296,9 @@ jobs:
296
- name: Install dependencies
297
run: npm ci
298
299
+ - name: Verify npm version
300
+ run: npm --version
301
+
302
- name: Release --dry-run
303
if: ${{ github.event.inputs.dryRun == 'true'}}
304
run: |
release.config.js
@@ -33,11 +33,17 @@ module.exports = {
33
changelogFile: 'CHANGELOG.md',
34
},
35
],
36
- ['@semantic-release/npm'],
+ [
37
+ '@semantic-release/npm',
38
+ {
39
+ npmPublish: false, // Disable npm publish here; we use exec with OIDC instead
40
+ },
41
+ ],
42
[
43
'@semantic-release/exec',
44
{
45
prepareCmd: 'sh ./scripts/release.sh',
46
+ publishCmd: 'npm publish',
47
48
49
0 commit comments