Fix Debian control file missing cmake Build-Depends #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Package Debian | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- '**' # triggers on ANY tag including hierarchical ones like stable/v2 | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Prerequisites | |
run: | | |
sudo apt update | |
sudo apt install -qqy debhelper cmake libboost-dev libboost-filesystem-dev libsqlite3-dev libgtest-dev | |
- uses: actions/checkout@v3 | |
- uses: jtdor/build-deb-action@v1 | |
id: package | |
with: | |
buildpackage-opts: --build=binary --no-sign | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: debian/artifacts/ |