From e039dae62b6ca8653c12967eef184da520c03878 Mon Sep 17 00:00:00 2001 From: retoor Date: Sat, 23 Nov 2024 19:22:22 +0000 Subject: [PATCH] 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. --- .gitea/workflows/export.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/export.yaml b/.gitea/workflows/export.yaml index 4299dbf..96322cf 100644 --- a/.gitea/workflows/export.yaml +++ b/.gitea/workflows/export.yaml @@ -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"