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 @@ -34,20 +34,20 @@ jobs:
34
34
run : bun buddy key:generate
35
35
36
36
- name : Prepublish # these packages are required for the "Publish framework" step
37
- run : cd storage/framework/core && bun run build
37
+ run : cd storage/framework/core && bun run build && cd ../../..
38
38
39
39
- name : Publish framework
40
- run : cd storage/framework/core && bun publish:framework
40
+ run : cd storage/framework/core && bun publish:framework && cd ../../..
41
41
env :
42
42
NODE_AUTH_TOKEN : ${{secrets.NPM_TOKEN}}
43
43
44
44
- name : Publish dummy libraries
45
- run : bunx pnpm --filter='./ storage/framework/core' publish:dummy-libs
45
+ run : cd storage/framework/core && bun publish:dummy-libs && cd ../../..
46
46
env :
47
47
NODE_AUTH_TOKEN : ${{secrets.NPM_TOKEN}}
48
48
49
49
- name : Publish VS Code Extension
50
- run : bunx pnpm --filter './ storage/framework/ide/vscode' release
50
+ run : cd storage/framework/ide/vscode && bun release && cd ../../../..
51
51
env :
52
52
VSCE_PAT : ${{ secrets.VSCE_PAT }}
53
53
You can’t perform that action at this time.
0 commit comments