From 45c11829474c58f7f0ca548ca6f45b8a31f0da13 Mon Sep 17 00:00:00 2001 From: bartfaik04 Date: Sat, 7 Jun 2025 13:51:24 +0200 Subject: [PATCH] Add debug for ci release --- .gitea/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5a1fc03..a9be96b 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -62,7 +62,10 @@ jobs: - name: Create release zip run: | cd build - zip ../ncsambawatcher.zip ./* + ls -al + zip -rv ../ncsambawatcher.zip ./* + cd ../ + ls -al - name: Publish release uses: actions/create-release@v1 @@ -71,6 +74,5 @@ jobs: with: tag_name: ${{ github.ref_name }} release_name: Release ${{ github.ref_name }} - files: | - ncsambawatcher.zip + files: ./ncsambawatcher.zip draft: true