File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,11 @@ jobs:
16
16
uses : actions/setup-node@v4
17
17
18
18
- name : Test dependencies
19
- working-directory : pkg
19
+ working-directory : ./ pkg
20
20
run : npm ci
21
21
22
22
- name : Test build
23
- working-directory : pkg
23
+ working-directory : ./ pkg
24
24
run : npm run build
25
25
26
26
publish-npm :
29
29
needs : [build]
30
30
steps :
31
31
- name : Publish to registry
32
- working-directory : pkg
32
+ working-directory : ./ pkg
33
33
run : npm publish --access public
34
34
env :
35
35
NODE_AUTH_TOKEN : ${{ secrets.NPM_ACCESS_TOKEN }}
40
40
needs : [build]
41
41
steps :
42
42
- name : Publish to GitHub Packages registry
43
- working-directory : pkg
43
+ working-directory : ./ pkg
44
44
run : npm publish --registry https://npm.pkg.github.com
45
45
env :
46
46
NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments