Skip to content

Commit

Permalink
Use UCRT64 variant when making 64bit Windows releases
Browse files Browse the repository at this point in the history
  • Loading branch information
saghul committed Dec 2, 2024
1 parent e77cfb6 commit 858fc36
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Setup MSYS2
uses: msys2/setup-msys2@v2
with:
msystem: ${{ matrix.arch == 'x86' && 'mingw32' || 'mingw64' }}
msystem: ${{ matrix.arch == 'x86' && 'mingw32' || 'ucrt64' }}
install: >-
git
make
Expand All @@ -90,6 +90,7 @@ jobs:
mv build/qjsc.exe build/qjsc-windows-${{matrix.arch}}.exe
- name: check
run: |
file build/qjs-windows-${{matrix.arch}}.exe
ldd build/qjs-windows-${{matrix.arch}}.exe build/qjsc-windows-${{matrix.arch}}.exe
- name: upload
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 858fc36

Please sign in to comment.