From e02b20f2ad9284c2bcae009c906162d4c7fdd90a Mon Sep 17 00:00:00 2001 From: John Doe Date: Fri, 30 Jan 2026 18:20:16 -0500 Subject: [PATCH] fix upload --- .gitea/workflows/release.yml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 53373d5..e750c04 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -119,9 +119,16 @@ jobs: APPLE_SIGNING_IDENTITY: ${{ env.CERT_ID }} NO_STRIP: true with: - tagName: v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version. - releaseName: "Auto-release v__VERSION__" - releaseBody: "See the assets to download this version and install. This release was created automatically." - releaseDraft: false - prerelease: true + # Disable GitHub release creation since we're using free-git.org + includeRelease: false + includeUpdaterJson: false args: ${{ matrix.args }} + + - name: Upload artifacts + uses: actions/upload-artifact@v4 + with: + name: tauri-app-${{ matrix.platform }} + path: | + src-tauri/target/release/bundle/ + src-tauri/target/*/release/bundle/ + retention-days: 30