From c8727a05dc1ee3672606f22b61d07a117b3aff9c Mon Sep 17 00:00:00 2001 From: LY <51789698+Young-Lord@users.noreply.github.com> Date: Tue, 28 May 2024 13:45:55 +0800 Subject: [PATCH] chore --- .github/workflows/build-windows.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index a5bb883..3854269 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -26,7 +26,7 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-2022] + os: [windows-latest] arch: ["Win32", "Win64"] steps: - name: Checkout @@ -75,6 +75,7 @@ jobs: working-directory: C:\dev\SQLCipher-${{ matrix.arch }} - name: Build SQLCipher (dynamically linked) + # use this to check dependencies: https://dependencywalker.com/ run: | mkdir sqlcipher\dynamic nmake /f Makefile.msc clean @@ -113,3 +114,4 @@ jobs: files: | build-artifacts-${{ matrix.arch }}.zip C:/dev/SQLCipher-${{ matrix.arch }}/sqlcipher-${{ matrix.arch == 'Win32' && 'x86' || matrix.arch == 'Win64' && 'x64' }}.exe + make_latest: true