Skip to content

Commit

Permalink
Add deb build to git actions
Browse files Browse the repository at this point in the history
  • Loading branch information
filanov committed Jul 7, 2024
1 parent d69ff91 commit 7f89955
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build-deb.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build Debian Package

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python (if needed)
uses: actions/setup-python@v3
with:
python-version: '3.10'

- name: Install build dependencies
run: |
sudo apt update
sudo apt install -y devscripts debhelper
sudo apt install dh-python python3-all python3-coverage python3-nose python3-sphinx python3-packaging
- name: Build Debian package
run: |
debuild -us -uc -b

0 comments on commit 7f89955

Please sign in to comment.