blob: 5b4f81c3bff94efd73dfb64b35d0a84228daebe6 (
plain) (
tree)
|
|
name: Packages (Debian)
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
name: Binary package
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
run: cd debian && sudo make deps
- name: Build binary package
run: cd debian && make bin/test
- name: Upload binary package
uses: actions/upload-artifact@v3
with:
name: build-area
path: debian/build-area/
if-no-files-found: error
|