Skip to content

Commit 9408780

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

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/deb-package.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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: |
18+
sudo apt-get update
19+
sudo apt-get install -y build-essential debhelper devscripts
20+
21+
- name: Build
22+
working-directory: ${{github.workspace}}
23+
run: ./makedeb.sh

0 commit comments

Comments
 (0)