Update release.yml #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
name: build | |
on: | |
push: | |
branches: | |
- "*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: debian:bookworm | |
steps: | |
- run: apt update | |
- name: install aux deps | |
run: apt -y --no-install-recommends install git ca-certificates curl gnupg | |
- name: clone repo | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: install build-deps | |
run: apt -y --no-install-recommends build-dep . | |
- name: build | |
run: dpkg-buildpackage -us -uc -b -j$(nproc) |