Add step to checkout submodultes

This commit is contained in:
Paul Dino Jones 2026-01-09 17:01:03 -05:00
parent b02c5b1e47
commit 7b97ba16df
1 changed files with 4 additions and 0 deletions

View File

@ -16,6 +16,8 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Install xmllint - name: Install xmllint
run: sudo apt install -y libuv1-dev libargtable2-dev libserialport-dev libconfig-dev libhidapi-dev liblua5.4-dev libxdg-basedir-dev libxml2-dev run: sudo apt install -y libuv1-dev libargtable2-dev libserialport-dev libconfig-dev libhidapi-dev liblua5.4-dev libxdg-basedir-dev libxml2-dev
- name: Set build dir - name: Set build dir
@ -41,7 +43,9 @@ jobs:
run: | run: |
mkdir PKG_SOURCE mkdir PKG_SOURCE
mkdir PKG_SOURCE/DEBIAN mkdir PKG_SOURCE/DEBIAN
mkdir PKG_SOURCE/usr/bin/
cp ./tools/distro/debian/dpkg/control ./PKG_SOURCE/DEBIAN/control cp ./tools/distro/debian/dpkg/control ./PKG_SOURCE/DEBIAN/control
cp ./build/monocoque ./PKG_SOURCE/usr/bin/monocoque
dpkg-deb --build PKG_SOURCE monocoque.deb dpkg-deb --build PKG_SOURCE monocoque.deb
- name: Release the Package - name: Release the Package