We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12dbd9a commit fdc7742Copy full SHA for fdc7742
.github/workflows/build.yml
@@ -21,18 +21,18 @@ jobs:
21
run: cmake -B build
22
23
- name: Build
24
- run: cmake --build build -j 3
+ run: cmake --build build --config Release -j 3
25
26
- name: Prepare files
27
run: |
28
mkdir upload
29
mkdir upload\x64
30
31
copy src/btrfs.inf upload
32
- copy build\Debug\ubtrfs.dll upload\x64
33
- copy build\Debug\shellbtrfs.dll upload\x64
34
- copy build\Debug\mkbtrfs.exe upload\x64
35
- copy build\Debug\btrfs.sys upload\x64
+ copy build\Release\ubtrfs.dll upload\x64
+ copy build\Release\shellbtrfs.dll upload\x64
+ copy build\Release\mkbtrfs.exe upload\x64
+ copy build\Release\btrfs.sys upload\x64
36
37
- name: Upload files
38
uses: actions/upload-artifact@v3
0 commit comments