Github action to create a debian package #10
This file contains 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
on: | |
push: | |
name: create-debian-package | |
jobs: | |
create-debian-package: | |
runs-on: ubuntu-latest | |
container: rust:1.76.0-bookworm | |
steps: | |
- name: Install required packages | |
run: apt-get update && apt-get install -y build-essential devscripts bash-completion pkg-config rsync libssl-dev | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Build package | |
run: ./build_deb.sh |