diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-09-29 15:31:08 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-09-29 15:46:47 +0200 |
commit | 5a6b2aa261f2e070653bb89ba18de4975a1f2242 (patch) | |
tree | da383801e2f94797e4439e43b70b614897e5c706 /.github/workflows/build.yml | |
parent | 992d3a207d0a6cf4faeb835ea6a37ff33df9c87d (diff) |
CMake and CI extensions
* CPack support for debian packages
* Use CPack version string for nDPId
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6d9cab8d8..786c30eb1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,4 +54,7 @@ jobs: make -C ./build daemon VERBOSE=1 - name: Dist run: | - ./scripts/make-dist.sh + make -C ./build dist + - name: CPack DEB + run: | + cd ./build && cpack -G DEB && cd .. |