chore: remove build output redirection to file in export workflow

The CI export workflow previously redirected `make` output to `build_output.txt`.
This change removes the file redirection, allowing build output to flow directly
to the job's standard output stream.
This commit is contained in:
retoor 2024-11-23 19:22:22 +00:00
parent 7177c356f2
commit e039dae62b

View File

@ -14,7 +14,7 @@ jobs:
- run: echo "Install dependencies."
- run: apt update
- run: apt install python3 python3-pip python3-venv make -y
- run: make > build_output.txt
- run: make
- run: echo "This job's status is ${{ job.status }}."
- run: git add .
- run: git commit -a -m "Update export statistics"