fix release.yml

This commit is contained in:
William Bell
2025-08-15 22:05:57 +01:00
parent eb36d02fcb
commit 1d3f4ec1b2

View File

@@ -105,9 +105,17 @@ jobs:
with: with:
submodules: recursive submodules: recursive
- name: Install build tools - name: Install MSYS2 and build tools
run: choco install winflexbison -y uses: msys2/setup-msys2@v3
shell: pwsh with:
update: true
install: >
mingw-w64-x86_64-toolchain
mingw-w64-x86_64-gmp
mingw-w64-x86_64-make
mingw-w64-x86_64-flex
mingw-w64-x86_64-bison
shell: msys2 {0}
- name: Setup Python - name: Setup Python
uses: actions/setup-python@v4 uses: actions/setup-python@v4
@@ -124,7 +132,7 @@ jobs:
- name: Build with MinGW - name: Build with MinGW
run: | run: |
make make
shell: pwsh shell: msys2 {0}
- name: Package - name: Package
run: | run: |