Skip to content

Commit

Permalink
Create build-deb.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
WallcroftUK authored Feb 9, 2024
1 parent 4ef1f54 commit 107f3e1
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build-deb.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build Debian Package

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

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

- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential dh-make devscripts

- name: Build Debian package
run: dpkg-buildpackage -us -uc -b

0 comments on commit 107f3e1

Please sign in to comment.