Skip to content

Commit

Permalink
Create blank.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
botsarefuture authored Apr 16, 2024
1 parent e53baeb commit 62bf4b1
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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

0 comments on commit 62bf4b1

Please sign in to comment.