We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf47e95 commit 3191ea2Copy full SHA for 3191ea2
1 file changed
.github/workflows/build.yml
@@ -33,8 +33,12 @@ jobs:
33
with:
34
repository: rbfx/rbfx
35
tag: latest
36
- fileName: rebelfork-sdk-Windows-msvc-dll-x64-latest.zip
37
- extract: true
+ fileName: rebelfork-sdk-windows-msvc-x64-dll-latest.7z
+
38
+ - name: Extract SDK 7z
39
+ shell: bash
40
+ working-directory: ${{ github.workspace }}
41
+ run: 7z x rebelfork-sdk-windows-msvc-x64-dll-latest.7z -y '-o${{ github.workspace }}'
42
43
- name: Configure
44
run: >
@@ -44,7 +48,7 @@ jobs:
48
-G "Visual Studio 17 2022"
45
49
-A x64
46
50
-DBUILD_SHARED_LIBS=ON
47
- -DCMAKE_PREFIX_PATH=${{ github.workspace }}/SDK/share
51
+ -DCMAKE_PREFIX_PATH=${{ github.workspace }}/rebelfork-sdk-windows-msvc-x64-dll-latest/share
52
53
- name: Build
54
run: |
0 commit comments