From 6fb7b1f5f73e5d23b2ab8096dbc4e4c6bccb4eca Mon Sep 17 00:00:00 2001 From: macniel Date: Thu, 25 Sep 2025 14:37:05 +0200 Subject: [PATCH] cicd: we are getting close --- .gitea/workflows/release.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index e7928e76..43fda4cf 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -28,9 +28,10 @@ jobs: - name: Package build output run: | cd ./dist - zip -r /tmp/dsa41_release.zip . # Adjust the path to your build output directory + zip -r release.zip . # Adjust the path to your build output directory + mv release.zip /tmp/release.zip - name: Package Upload uses: akkuman/gitea-release-action@v1 with: server_url: https://git.macniel.online - path: /tmp/dsa41_release.zip + files: /tmp/release.zip