From dab05cf6c86e68c47661ca1180f0564b8fc33f74 Mon Sep 17 00:00:00 2001 From: darkstack <1835601+darkstack@users.noreply.github.com> Date: Fri, 4 Apr 2025 17:48:53 +0200 Subject: [PATCH] Fix Rlz --- .gitea/workflows/build.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index d5c6731..05ad272 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -37,9 +37,12 @@ jobs: uses: actions/upload-artifact@v3 with: path: build.zip - name: build-linux64.zip + name: build.zip retention-days: 30 overwrite: true + - name: Get current date + id: date + run: echo "date=$(echo $(date +'%Y-%m-%d'))" >> $GITHUB_OUTPUT - name: Release if: github.ref_name == 'master' uses: akkuman/gitea-release-action@v1 @@ -47,5 +50,5 @@ jobs: with: tag_name: release-${{ steps.date.outputs.date }} files: |- - build-linux64.zip + build.zip