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 175af70 commit 01c0fb9Copy full SHA for 01c0fb9
1 file changed
.github/workflows/publish-core.yml
@@ -20,6 +20,7 @@ jobs:
20
- uses: actions/setup-node@v4
21
with:
22
node-version: "20"
23
+ registry-url: "https://registry.npmjs.org"
24
cache: "pnpm"
25
26
- name: Install dependencies
@@ -31,6 +32,10 @@ jobs:
31
32
- name: Build core package
33
run: pnpm --filter=@flow-scanner/lightning-flow-scanner-core run build
34
- - name: Publish
35
+ - name: Prepare publish
36
working-directory: packages/core
37
+ run: node ../../.github/scripts/prepare-publish.js
38
+
39
+ - name: Publish
40
+ working-directory: packages/core/out
41
run: npm publish --provenance --access public
0 commit comments