From 983867acabd7a071daa960ec2c3da795fd956494 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?MATYSIAK=20Herv=C3=A9?= Date: Thu, 21 Dec 2023 22:44:58 +0700 Subject: [PATCH] ci: try to setup LSlib --- .github/workflows/main.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index e712593a..5222c847 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -19,9 +19,11 @@ jobs: uses: actions/checkout@v4 - name: Get LSLib + shell: pwsh run: | - aria2c https://github.com/Norbyte/lslib/releases/download/v1.18.7/ExportTool-v1.18.7.zip - 7z e ExportTool-v*.zip -o./External/lslib + mkdir -p External/lslib + aria2c https://github.com/Norbyte/lslib/releases/download/v1.18.7/ExportTool-v1.18.7.zip -o lslib.zip + Expand-Archive -Path lslib.zip -DestinationPath External/lslib - name: Build run: dotnet build BG3ModManager.sln -c Release -r win-x64 --nologo --self-contained false