From 73fbcbd41b74ab4e0ff702c4e307334b16038229 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 12 Mar 2021 16:10:08 +0300 Subject: debian: add GitHub workflow --- .github/workflows/debian.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/debian.yml (limited to '.github/workflows') diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml new file mode 100644 index 0000000..61deebc --- /dev/null +++ b/.github/workflows/debian.yml @@ -0,0 +1,25 @@ +name: Packages (Debian) + +on: + push: + pull_request: + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + name: Binary package + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Install dependencies + run: cd debian && sudo make deps + - name: Make binary package + run: cd debian && make bin/test + - name: Upload binary package + uses: actions/upload-artifact@v2 + with: + name: build-area + path: debian/build-area/ -- cgit v1.2.3