From c68e8c6bb1ff9396b8876dd7480168cbf745eed4 Mon Sep 17 00:00:00 2001 From: ParkSuMin Date: Wed, 3 Sep 2025 23:48:02 +0300 Subject: [PATCH] Find the current path of gitea runner --- .gitea/workflows/check.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/check.yml b/.gitea/workflows/check.yml index 5a8538c..8e242ab 100644 --- a/.gitea/workflows/check.yml +++ b/.gitea/workflows/check.yml @@ -11,14 +11,14 @@ jobs: uses: actions/checkout@v4 - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ gitea.workspace }} - name: Install cmake package run: sudo apt update -y && sudo apt install cmake -y - name: Cmake prepare part run: mkdir build && cd build && cmake .. + - name: List files in the repository + run: | + ls ${{ gitea.workspace }} - name: Build project - run: make + run: cd build && make - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file