diff options
author | saturneric <[email protected]> | 2024-07-30 17:59:06 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-07-30 17:59:06 +0000 |
commit | cf3624a25d6bf68d1137520bfb152815c26cbba2 (patch) | |
tree | 4f5d21f6c1a3b6945a8c18da4977887c3948ee79 /.github/workflows/release.yml | |
parent | fix: use standard os detection macro (diff) | |
download | GpgFrontend-cf3624a25d6bf68d1137520bfb152815c26cbba2.tar.gz GpgFrontend-cf3624a25d6bf68d1137520bfb152815c26cbba2.zip |
fix: solve known issues on build
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/release.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a2f0d6e6..47bf1f5d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -178,8 +178,7 @@ jobs: shell: msys2 {0} run: | git clone --depth 1 --branch v2.1.7 https://github.com/microsoft/mimalloc.git ${{github.workspace}}/third_party/mimalloc - cd $(echo "/${{github.workspace}}" | sed 's/\\/\//g' | sed 's/://') - cd third_party/mimalloc + cd ${{github.workspace}}/third_party/mimalloc mkdir build && cd build cmake -G Ninja -DMI_SECURE=ON -DCMAKE_INSTALL_PREFIX=$MSYSTEM_PREFIX .. && ninja ninja install |