From 000a1d1f24cded4620cc84fa523b19a2d113d436 Mon Sep 17 00:00:00 2001 From: Alex Selimov Date: Sat, 22 Mar 2025 09:30:34 -0400 Subject: [PATCH] Fix gitea ref syntax --- .gitea/workflows/tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/tests.yaml b/.gitea/workflows/tests.yaml index 44e29af..a1723ee 100644 --- a/.gitea/workflows/tests.yaml +++ b/.gitea/workflows/tests.yaml @@ -7,6 +7,6 @@ jobs: runs-on: ubuntu-latest steps: - run: pipx install poetry - - run: git clone https://www.alexselimov.com/git/aselimov/code_rag.git && cd code_rag && git checkout ${{ gitea.ref }} + - run: git clone https://www.alexselimov.com/git/aselimov/code_rag.git && cd code_rag && git checkout ${{ gitea.ref_name }} - run: echo $(ls) - run: /root/.local/bin/poetry install && /root/.local/bin/poetry run pytest -v