You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://github.com/amirisback/automated-build-android-app-with-github-action/actions/workflows/detekt-analysis.yml)
- Full Code For Github Action Workflows [Click Here](https://github.com/amirisback/automated-build-android-app-with-github-action/blob/master/.github/workflows/generate-apk-aab-debug-release.yml)
14
14
15
+
## Version Release
16
+
This Is Latest Release
17
+
18
+
$version_release = 2.0.0
19
+
20
+
What's New??
21
+
22
+
* Update Action Script *
23
+
* Update Android Studio Latest Version *
24
+
15
25
## Article Sources
16
26
-[How To Securely Build and Sign Your Android App With GitHub Actions](https://proandroiddev.com/how-to-securely-build-and-sign-your-android-app-with-github-actions-ad5323452ce)
17
27
-[How to Use GitHub Actions to Automate Android App Development](https://www.freecodecamp.org/news/use-github-actions-to-automate-android-development/)
@@ -27,7 +37,14 @@
27
37
28
38
### Step 3. Create Code
29
39
```yml
30
-
name: Generate APK / AAB Debug And Release
40
+
name: Android CI
41
+
42
+
env:
43
+
# The name of the main module repository
44
+
main_project_module: app
45
+
46
+
# The name of the Play Store
47
+
playstore_name: Frogobox ID
31
48
32
49
on:
33
50
# Triggers the workflow on push or pull request events but only for default and protected branches
@@ -36,6 +53,10 @@ on:
36
53
pull_request:
37
54
branches: [ master ]
38
55
56
+
workflow_dispatch:
57
+
# The workflow will be dispatched to the default queue
0 commit comments