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 f6c39f5 commit f326e9aCopy full SHA for f326e9a
.github/workflows/onRelease.yml
@@ -22,6 +22,7 @@ jobs:
22
- uses: actions/checkout@v4
23
with:
24
ref: ${{ github.event.release.tag_name || inputs.tag }}
25
+ token: ${{ secrets.SVC_CLI_BOT_GITHUB_TOKEN }}
26
27
- name: Use Node.js
28
uses: actions/setup-node@v4
@@ -33,14 +34,9 @@ jobs:
33
34
- name: Upgrade npm for trusted publishing
35
run: npm install -g npm@^11.5.1
36
- - name: Install dependencies
37
- run: yarn install --frozen-lockfile
38
-
39
- - name: Build
40
- run: yarn build
41
42
- - name: Generate oclif manifest
43
- run: yarn prepack
44
45
- - name: Publish to npm
46
- run: npm publish --provenance --access public
+ - name: Create Release
+ run: |
+ yarn install --frozen-lockfile
+ yarn build
+ yarn prepack
+ npm publish --provenance --access public
0 commit comments