Skip to content

Commit d5fcb80

Browse files
committed
ci: fix packaging problem
1 parent f7351bc commit d5fcb80

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/release_packages.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ jobs:
1919
run: |
2020
cmake -S ${{github.workspace}} -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release
2121
cmake --build ${{github.workspace}}/build
22-
make package
22+
cd ${{github.workspace}}/build
23+
cpack -C Release
2324
2425
- name: 'Upload PC Linux artifacts'
2526
uses: actions/upload-artifact@v4
@@ -58,7 +59,8 @@ jobs:
5859
run: |
5960
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
6061
cmake --build ${{github.workspace}}/build-arm
61-
make package
62+
cd ${{github.workspace}}/build-arm
63+
cpack -C Release
6264
6365
- name: 'Upload ARM artifacts'
6466
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)