From 3cf72ec436e704f200777a481de8b94e4b341752 Mon Sep 17 00:00:00 2001 From: Juan Gilsanz Polo Date: Fri, 26 May 2023 15:15:34 +0200 Subject: [PATCH] Added conditions --- .github/workflows/release.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1f412ef..ab1bca3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -5,13 +5,20 @@ on: inputs: version: description: "Version" + required: true default: "1.0.0" number: description: "Build number" + required: true default: "1" + android: + description: "Build Android" + type: boolean + default: true jobs: build: - name: Build APK and Create release + name: Build APK and AAB + if: github.event.inputs.android == true runs-on: ubuntu-latest steps: - uses: actions/checkout@v3