We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5bdaf9e + 6f9f510 commit ca54884Copy full SHA for ca54884
.github/workflows/build.yml
@@ -1,13 +1,16 @@
1
+name: Build project after push
2
+
3
on:
4
push:
5
branches:
6
- main
-name: Build project after push
7
jobs:
8
build:
9
runs-on: ubuntu-latest
10
11
steps:
12
- uses: actions/checkout@v3
13
14
- name: set up JDK 11
15
uses: actions/setup-java@v3
16
with:
@@ -17,8 +20,10 @@ jobs:
17
20
18
21
- name: Grant execute permission for gradlew
19
22
run: chmod +x gradlew
23
24
- name: Build with Gradle
25
run: ./gradlew build
26
27
- name: Build debug APK
28
run: bash ./gradlew assembleDebug --stacktrace
29
0 commit comments