Skip to content

Commit 1769eee

Browse files
Reproduce the problem
1 parent 3c65f88 commit 1769eee

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,15 @@ jobs:
7373
run: spago build
7474

7575
- name: Bootstrap executable
76-
run: ./bin/index.dev.js bundle -p spago-bin
76+
run: |
77+
./bin/index.dev.js bundle -p spago-bin -v
78+
if [ ! -f ./bin/bundle.js ]
79+
then
80+
ls -a .
81+
ls -a ./bin
82+
echo "Bundling failed"
83+
exit 1
84+
fi
7785
7886
- name: Bundle docs-search client
7987
run: ./bin/index.dev.js bundle -p docs-search-client-halogen

0 commit comments

Comments
 (0)