Skip to content

update: debian changelog #4

update: debian changelog

update: debian changelog #4

Workflow file for this run

name: Build and Publish Debian Package
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential devscripts debhelper git tar gzip
- name: Build deb package
run: |
# Assuming you have debian/ directory with control files
debuild -us -uc
- name: Upload deb artifact
uses: actions/upload-artifact@v4
with:
name: robotkernel-service-helper-deb
path: ../*.deb