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 2846460 commit 4765bb0Copy full SHA for 4765bb0
.github/workflows/publish_npm.yml
@@ -31,14 +31,14 @@ jobs:
31
registry-url: 'https://registry.npmjs.org'
32
33
- name: Publish CLI to npm
34
- if: ${{ github.event.inputs.workspace_name == "cli" }}
+ if: ${{ github.event.inputs.workspace_name == 'cli' }}
35
run: |
36
npm i --workspaces
37
npm run compile --workspaces
38
npm publish --workspace=cli --provenance --access public
39
40
- name: Publish Detector to npm
41
- if: ${{ github.event.inputs.workspace_name == "detector" }}
+ if: ${{ github.event.inputs.workspace_name == 'detector'}}
42
43
44
0 commit comments