Skip to content

Commit

Permalink
feat(actions): single apk build
Browse files Browse the repository at this point in the history
  • Loading branch information
axiel7 authored Aug 6, 2024
1 parent 013c3b3 commit 2273a15
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build-upload-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
tags:
- '*'
workflow_dispatch:
inputs:
single_apk:
description: 'Build only the universal apk'
type: boolean

jobs:
build:
Expand All @@ -28,6 +32,9 @@ jobs:
java-version: 17
distribution: adopt

- if: ${{ inputs.single_apk = true }}
run: sed -i -e '/isEnable/s/true/false/' app/build.gradle.kts

- name: Build Android release
run: fastlane release
env:
Expand Down

0 comments on commit 2273a15

Please sign in to comment.