Use mktemp in a way that is supported by busybox. #3
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 Debian package | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- id: INSTALL_ADDITIONAL_BUILD_DEPENDENCIES | |
run: | | |
sudo apt install -y eatmydata | |
sudo eatmydata apt install -y devscripts debhelper | |
sudo eatmydata apt build-dep -y . || sudo eatmydata apt install -y librtlsdr-dev adduser | |
- id: PREPARE_SOURCE | |
run: | | |
ln -s deb debian | |
echo 1.0 > debian/source/format | |
- id: BUILD_DEB | |
run: yes y | eatmydata debuild --no-sign |