We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 423b63a + d296d2b commit d5de644Copy full SHA for d5de644
1 file changed
.github/workflows/android-build.yml
@@ -6,9 +6,7 @@ on:
6
7
jobs:
8
build:
9
-
10
runs-on: ubuntu-latest
11
12
steps:
13
- uses: actions/checkout@v6
14
- name: set up JDK 17
@@ -17,11 +15,20 @@ jobs:
17
15
java-version: '17'
18
16
distribution: 'temurin'
19
cache: gradle
+
20
- name: Grant execute permission for gradlew
21
run: |
22
cd ./AndroidApp
23
chmod +x ./gradlew
24
- name: Build with Gradle
25
26
27
./gradlew build
28
29
+ - name: Notify discord
30
+ uses: sarisia/actions-status-discord@v1
31
+ if: always()
32
+ with:
33
+ webhook: ${{ secrets.DISCORD_WEBHOOK }}
34
+ status: ${{ job.status }}
0 commit comments