Skip to content

Commit bf96b0a

Browse files
committed
Add workflow for building deb package
1 parent 2928307 commit bf96b0a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/deb-package.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Make Debian package
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
7+
workflow_dispatch:
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
16+
- name: Install build scripts
17+
run: sudo apt-get install -y build-essential debhelper devscripts
18+
19+
- name: Build
20+
working-directory: ${{github.workspace}}
21+
run: ./makedeb.sh

0 commit comments

Comments
 (0)