From c640b07d98393152ad189a1eebe4b7662c375fa7 Mon Sep 17 00:00:00 2001 From: Nela-cat Date: Mon, 17 Nov 2025 23:56:01 +0100 Subject: [PATCH] Fix test job: add checkout before download-artifact --- .gitea/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ba7983a..d936939 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -28,11 +28,14 @@ jobs: test: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v4 + - uses: actions/download-artifact@v3 with: name: app.tar - run: tar xf app.tar - - run: ./app/app + +