From eb43b26e4b6b6fc630075e8532a1b96fff584b3d Mon Sep 17 00:00:00 2001 From: Greg Date: Mon, 7 Aug 2023 21:11:21 +0900 Subject: [PATCH] Fix version number for Windows build (re: issue #296) --- .github/workflows/build.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 7f8e44f51..489878204 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -19,7 +19,7 @@ - ubuntu-latest - macos-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Install deps (Linux) run: | sudo apt-get install libreadline-dev xxd libffi-dev libssl-dev @@ -51,11 +51,13 @@ shell: msys2 {0} steps: - uses: msys2/setup-msys2@v2 - - uses: actions/checkout@v1 - name: Install deps run: | pacman --noconfirm -S make mingw-w64-x86_64-gcc mingw-w64-x86_64-headers-git mingw-w64-x86_64-libffi mingw-w64-x86_64-dlfcn - pacman --noconfirm -S mingw-w64-x86_64-openssl mingw-w64-x86_64-readline vim diffutils + pacman --noconfirm -S mingw-w64-x86_64-openssl vim diffutils git + - name: Configure line endings + run: git config --global core.autocrlf input + - uses: actions/checkout@v3 - name: Build run: make ISOCLINE=1 release - name: Test @@ -98,7 +100,7 @@ WASI_VERSION: 19 BINARYEN_VERSION: 109 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Set environment (1/3) run: | echo "WASI_VERSION_FULL=${WASI_VERSION}.0" >> $GITHUB_ENV