Find the current path of gitea runner
Some checks failed
BattleCap test mode / Build BattleCap (push) Failing after 21s

This commit is contained in:
2025-09-03 23:48:02 +03:00
parent 140c814135
commit c68e8c6bb1

View File

@@ -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 }}."