Skip to content

Commit e87751a

Browse files
authored
fix: Don't include binaryen submodules so Windows builds with opam (#138)
1 parent 35b46b8 commit e87751a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/esy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Checkout project
3131
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3232
with:
33-
submodules: "recursive"
33+
submodules: true
3434

3535
- name: Install local dependencies
3636
run: |

.github/workflows/opam.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Checkout project
2525
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2626
with:
27-
submodules: "recursive"
27+
submodules: true
2828

2929
- name: Setup OCaml ${{ matrix.ocaml-compiler }}
3030
uses: ocaml/setup-ocaml@c2e6bb92370612b89f302c3aaefa1da45ee2d702 # v3.2.15

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ jobs:
3636
- name: Checkout code
3737
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3838
with:
39-
submodules: "recursive"
39+
submodules: true
4040

4141
- name: Build archive
4242
run: |
43-
git-archive-all --force-submodules libbinaryen.tar.gz
43+
git-archive-all libbinaryen.tar.gz
4444
4545
- name: Upload Release Asset
4646
id: upload

0 commit comments

Comments
 (0)