From 48e30672f56a4a0ce47810c0bc230d496d83f426 Mon Sep 17 00:00:00 2001 From: Rajinikanth Date: Fri, 7 Apr 2023 19:19:39 +0530 Subject: [PATCH] TP-24174 | workflow input fix --- .github/workflows/generate_apk.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/generate_apk.yml b/.github/workflows/generate_apk.yml index e68fdcf..00e061f 100644 --- a/.github/workflows/generate_apk.yml +++ b/.github/workflows/generate_apk.yml @@ -2,15 +2,6 @@ name: Generate APK CI on: workflow_call: - inputs: - environment: - description: Build environment passed from caller workflow - required: true - type: string - type: - description: Build type passed from caller workflow - required: true - type: string jobs: generate: @@ -21,9 +12,6 @@ jobs: - name: Log Build Metadata run: | echo "Commit SHA: ${{ github.sha }}" - echo "Build Environment: ${{ github.event.inputs.environment || inputs.environment }}" - echo "App Version Code: $(awk '/VERSION_CODE/ {print $4}' app/build.gradle)" - echo "App Version Name: $(awk '/VERSION_NAME/ {print $4}' app/build.gradle | tr -d '"')" - name: Set up JDK 11 uses: actions/setup-java@v3 with: