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 f7351bc commit d5fcb80Copy full SHA for d5fcb80
.github/workflows/release_packages.yml
@@ -19,7 +19,8 @@ jobs:
19
run: |
20
cmake -S ${{github.workspace}} -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release
21
cmake --build ${{github.workspace}}/build
22
- make package
+ cd ${{github.workspace}}/build
23
+ cpack -C Release
24
25
- name: 'Upload PC Linux artifacts'
26
uses: actions/upload-artifact@v4
@@ -58,7 +59,8 @@ jobs:
58
59
60
cmake -DCMAKE_BUILD_TYPE=Release -S ${{github.workspace}} -B ${{github.workspace}}/build-arm -DCMAKE_C_COMPILER=aarch64-linux-gnu-gcc -DARM=TRUE -DCMAKE_SYSTEM_PROCESSOR=aarch64
61
cmake --build ${{github.workspace}}/build-arm
62
+ cd ${{github.workspace}}/build-arm
63
64
65
- name: 'Upload ARM artifacts'
66
0 commit comments