Skip to content

Commit 3958f81

Browse files
committed
Fix build.
1 parent 2109e61 commit 3958f81

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
env:
4949
ci_platform: windows
50-
ci_target_sdk_name: rebelfork-sdk-Windows-msvc-dll-x64-latest.zip
50+
ci_target_sdk_name: rebelfork-sdk-windows-msvc-x64-lib-latest
5151
ci_upload_release: ${{
5252
(github.repository == 'rbfx/Core.SamplePlugin') &&
5353
(github.ref == 'refs/heads/master')
@@ -66,13 +66,13 @@ jobs:
6666
with:
6767
repository: rbfx/rbfx
6868
tag: latest
69-
fileName: ${{ env.ci_target_sdk_name }}
69+
fileName: ${{ env.ci_target_sdk_name }}.7z
7070

7171
- name: Unzip target SDK
7272
run: |
73-
cd ${{ github.workspace }}
74-
unzip ${{ env.ci_target_sdk_name }}
75-
mv ./SDK ./SDK-target
73+
cd '${{ github.workspace }}'
74+
7z x '${{ env.ci_target_sdk_name }}.7z' '-o${{ github.workspace }}' -y
75+
mv './${{ env.ci_target_sdk_name }}' ./SDK-target
7676
7777
- name: Setup cmake
7878
uses: jwlawson/actions-setup-cmake@v1

0 commit comments

Comments
 (0)