update README #410
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Debian packaging | |
| on: | |
| [ push, pull_request ] | |
| jobs: | |
| debian_publishing: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Install system dependencies 📦 | |
| run: sudo apt-get update && sudo apt-get install -y dh-python build-essential devscripts fakeroot debhelper python3-all python3-setuptools | |
| - uses: actions/setup-python@v6 | |
| name: setup Python | |
| with: | |
| python-version: '3.12' | |
| - name: Checkout pywis-pubsub | |
| uses: actions/checkout@master | |
| - name: build Debian package 🏗️ | |
| run: sudo debuild -b -uc -us |