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 c1d677d commit 92f4a25Copy full SHA for 92f4a25
1 file changed
.github/workflows/publish-npm.yml
@@ -42,6 +42,10 @@ on:
42
required: false
43
default: ''
44
type: string
45
+ working-directory:
46
+ description: "Change the workspace"
47
+ default: ''
48
+ type: string
49
secrets:
50
npm-token:
51
description: 'NPM token for authentication'
@@ -65,9 +69,11 @@ jobs:
65
69
scope: ${{ inputs.scope }}
66
70
67
71
- name: Install dependencies
72
+ working-directory: ${{ inputs.working-directory }}
68
73
run: ${{ inputs.install-command }}
74
75
- name: Publish package
76
77
run: |
78
TAG_OPTION=""
79
if [ -n "${{ inputs.tag }}" ]; then
0 commit comments