feat: add action build deb #1
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
name: Build DEB Package | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build DEB package | |
run: | | |
chmod -R 775 rockpi-quad/DEBIAN/ | |
dpkg-deb --build -Z gzip rockpi-quad | |
- name: Upload DEB package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: rockpi-quad.deb | |
path: rockpi-quad.deb |