We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1a6e35 commit 6b7ee61Copy full SHA for 6b7ee61
.github/workflows/provenance.yml
@@ -2,6 +2,15 @@ name: Publish Packages to npm
2
3
on:
4
workflow_dispatch:
5
+ inputs:
6
+ debug:
7
+ description: 'Enable debug output'
8
+ required: false
9
+ default: '0'
10
+ type: string
11
+ options:
12
+ - '0'
13
+ - '1'
14
15
jobs:
16
build:
@@ -25,6 +34,8 @@ jobs:
25
34
- run: npm publish --provenance --tag latest --access public
26
35
env:
27
36
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
37
+ SOCKET_CLI_DEBUG: ${{ inputs.debug }}
28
38
- run: npm access set mfa=automation @socketregistry/packageurl-js
29
39
30
40
41
.github/workflows/test.yml
@@ -9,6 +9,7 @@ on:
pull_request:
branches:
- main
+ workflow_dispatch:
permissions:
contents: read
0 commit comments