Skip to content

Commit 6f9f510

Browse files
authored
Update build.yml
1 parent 41b2550 commit 6f9f510

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
1+
name: Build project after push
2+
13
on:
24
push:
35
branches:
46
- main
5-
name: Build project after push
67
jobs:
78
build:
89
runs-on: ubuntu-latest
10+
911
steps:
1012
- uses: actions/checkout@v3
13+
1114
- name: set up JDK 11
1215
uses: actions/setup-java@v3
1316
with:
@@ -17,8 +20,10 @@ jobs:
1720

1821
- name: Grant execute permission for gradlew
1922
run: chmod +x gradlew
23+
2024
- name: Build with Gradle
2125
run: ./gradlew build
26+
2227
- name: Build debug APK
2328
run: bash ./gradlew assembleDebug --stacktrace
2429

0 commit comments

Comments
 (0)