From 857f27eb9427f79835bbac120406254d165756f9 Mon Sep 17 00:00:00 2001 From: warren rhodes Date: Mon, 8 Jan 2024 10:17:32 +0100 Subject: [PATCH] Create x_lib_deployment_apps_base.yml --- .../workflows/x_lib_deployment_apps_base.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/x_lib_deployment_apps_base.yml diff --git a/.github/workflows/x_lib_deployment_apps_base.yml b/.github/workflows/x_lib_deployment_apps_base.yml new file mode 100644 index 0000000..0cc0578 --- /dev/null +++ b/.github/workflows/x_lib_deployment_apps_base.yml @@ -0,0 +1,19 @@ +name: X Lib Deployment Apps Base Workflow + +on: + workflow_call: + inputs: + UPLOAD_TO_PLAY_STORE: + required: true + type: boolean + description: "True if the android appbundles should be uploaded to play store" + secrets: + GCP_CREDENTIALS_BASE64: + required: true + description: "GCP service account credentials in base64" +jobs: + deploy-web: + runs-on: ubuntu-latest + timeout-minutes: 30 + steps: + - run: echo "${{ secrets.GCP_CREDENTIALS_BASE64 }}"