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