blob: 762071c73858a9195e4610d374314b6774780b4d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
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: sudo make -C debian deps
- name: Build binary package
run: make -C debian bin/test
- name: Upload binary package
uses: actions/upload-artifact@v3
with:
name: build-area
path: debian/build-area/
if-no-files-found: error
|