Skip to content

Commit

Permalink
Add workflow for building deb package
Browse files Browse the repository at this point in the history
  • Loading branch information
aursulis committed Mar 9, 2024
1 parent 2928307 commit bf96b0a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/deb-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Make Debian package

on:
push:
branches: [ "master" ]

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Install build scripts
run: sudo apt-get install -y build-essential debhelper devscripts

- name: Build
working-directory: ${{github.workspace}}
run: ./makedeb.sh

0 comments on commit bf96b0a

Please sign in to comment.