From 7cc81bd554caec3ae55a84f180a6793003e96c87 Mon Sep 17 00:00:00 2001 From: darken Date: Tue, 7 Oct 2025 12:43:21 +0200 Subject: [PATCH] Chore: Update release tooling Update Fastlane and simplify GitHub release workflow. --- .github/workflows/release-tag.yml | 3 +-- fastlane/Fastfile | 8 +------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release-tag.yml b/.github/workflows/release-tag.yml index 37dff90d..96758424 100644 --- a/.github/workflows/release-tag.yml +++ b/.github/workflows/release-tag.yml @@ -65,8 +65,7 @@ jobs: tag_name: ${{ steps.tagger.outputs.tag }} name: ${{ steps.tagger.outputs.tag }} generate_release_notes: true - files: | - app/build/outputs/apk/foss/beta/*.apk + files: app/build/outputs/apk/foss/beta/*.apk env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/fastlane/Fastfile b/fastlane/Fastfile index a681947a..717dd495 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -11,7 +11,7 @@ # This is the minimum version number required. # Update this, if you use features of a newer version -fastlane_version "2.208.0" +fastlane_version "2.226.0" default_platform :android @@ -32,9 +32,6 @@ platform :android do skip_upload_images: 'true', skip_upload_screenshots: 'true', skip_upload_metadata: 'true', - aab_paths: [ - "app/build/outputs/bundle/gplayRelease/app-gplay-beta.aab", - ], ) end @@ -50,9 +47,6 @@ platform :android do skip_upload_images: 'true', skip_upload_screenshots: 'true', skip_upload_metadata: 'true', - aab_paths: [ - "app/build/outputs/bundle/gplayRelease/app-gplay-release.aab", - ], ) end