From c949c75f28bac904b8f2f38ea244ad77f1fe7de7 Mon Sep 17 00:00:00 2001 From: aggarwalakshun Date: Mon, 14 Jul 2025 18:32:44 +0530 Subject: [PATCH] try something new --- .gitea/workflows/release.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 0b89225..1702f8a 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -22,11 +22,11 @@ jobs: pyinstaller --onefile --add-data "data/:data/" setup.py cp dist/setup arch-setup shell: bash - - name: Upload binary - uses: actions/upload-artifact@v3 + - name: Release binary + uses: akkuman/gitea-release-action@v1 with: - name: arch-setup - path: arch-setup + files: |- + arch-setup debian-build: runs-on: ubuntu-latest @@ -46,11 +46,11 @@ jobs: pyinstaller --onefile --add-data "data/:data/" setup.py cp dist/setup debian-setup shell: bash - - name: Upload binary - uses: actions/upload-artifact@v3 + - name: Release binary + uses: akkuman/gitea-release-action@v1 with: - name: debian-setup - path: debian-setup + files: |- + debian-setup fedora-build: runs-on: ubuntu-latest @@ -69,8 +69,8 @@ jobs: pyinstaller --onefile --add-data "data/:data/" setup.py cp dist/setup fedora-setup shell: bash - - name: Upload binary - uses: actions/upload-artifact@v3 + - name: Release binary + uses: akkuman/gitea-release-action@v1 with: - name: fedora-setup - path: fedora-setup + files: |- + fedora-setup