From 9383b7ac5d4a5242d77556b7c1f5ef92f0e75c0c Mon Sep 17 00:00:00 2001 From: Shivam Goyal Date: Tue, 7 Feb 2023 17:54:31 +0530 Subject: [PATCH] Remove build-dev-release from GH Action (#5229) --- .github/workflows/android_build.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/android_build.yml b/.github/workflows/android_build.yml index 7ba22390ab..36773900cc 100644 --- a/.github/workflows/android_build.yml +++ b/.github/workflows/android_build.yml @@ -16,20 +16,9 @@ jobs: with: environment: qa type: debug - build-dev-debug: - uses: ./.github/workflows/generate_apk.yml - with: - environment: dev - type: debug build-qa-release: if: github.event_name == 'push' && (github.ref_name == 'master' || startsWith(github.ref_name, 'release-')) uses: ./.github/workflows/generate_apk.yml with: environment: qa type: release - build-dev-release: - if: github.event_name == 'push' && (github.ref_name == 'master' || startsWith(github.ref_name, 'release-')) - uses: ./.github/workflows/generate_apk.yml - with: - environment: dev - type: release