-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create x_lib_deployment_apps_base.yml
- Loading branch information
1 parent
57e8212
commit 857f27e
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 }}" |