Add binaries cross compile in CD (#113)

This commit is contained in:
Thomas Miceli
2023-09-26 15:13:58 +02:00
committed by GitHub
parent fa8e068e24
commit 30ca090e74
9 changed files with 134 additions and 7 deletions

8
scripts/watch.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
set -euo pipefail
make watch_frontend &
make watch_backend &
trap 'kill $(jobs -p)' EXIT
wait