Skip to content

add github actions to generate deb package #4

add github actions to generate deb package

add github actions to generate deb package #4

Workflow file for this run

name: Build Debian Package
'on':
push:
branches:
- kde-fix
pull_request:
release:
types:
- published
workflow_dispatch:
jobs:
build-deb:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install packaging dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
build-essential \
debhelper \
dh-python \
dpkg-dev \
fakeroot \
gir1.2-gtk-3.0 \
meson \
ninja-build \
pkg-config \
python3 \
python3-gi
- name: Build Debian package
run: dpkg-buildpackage -us -uc -b
- name: Upload Debian artifacts
uses: actions/upload-artifact@v4
with:
name: vboard-deb-${{ github.sha }}
path: |
../*.deb
../*.buildinfo
../*.changes
if-no-files-found: error