File tree 1 file changed +11
-4
lines changed
1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -19,17 +19,24 @@ jobs:
19
19
node-version : ' 18' # Specify the Node.js version you need
20
20
registry-url : ' https://registry.npmjs.org'
21
21
22
+ - name : Install BeyondJS globally
23
+ run : npm install -g beyond@latest
24
+
22
25
- name : Install dependencies
26
+ working-directory : src
23
27
run : npm install
24
28
25
- - name : Install BeyondJS globally
26
- run : npm install -g beyond
27
-
28
29
- name : Build package
29
30
run : beyond build --pkg=pragmate-ui --distribution=npm --logs
30
31
32
+ - name : List build .beyond contents
33
+ run : ls -la src/.beyond
34
+
35
+ - name : List build directory contents
36
+ run : ls -la src/.beyond/builds/npm/code
37
+
31
38
- name : Publish to NPM
32
39
working-directory : src/.beyond/builds/npm/code
33
40
env :
34
41
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
35
- run : npm publish --access public
42
+ run : npm publish
You can’t perform that action at this time.
0 commit comments