Skip to content

Create blank.yml

Create blank.yml #1

Workflow file for this run

name: Build Debian Package
on:
push:
branches:
- main # Change this to your main branch name
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y debhelper dh-make dh-exec
- name: Build Debian package
run: |
cd debian
dpkg-buildpackage -us -uc -b