Skip to content

Commit 5bf56c9

Browse files
authored
Delete dependabot and use Gradle build action (#276)
See title
1 parent 1816b9f commit 5bf56c9

File tree

4 files changed

+25
-35
lines changed

4 files changed

+25
-35
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/android_emerge_snapshots.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Generate Android Snapshots
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
pull_request:
7-
branches: [ main ]
8-
paths: [ android/** ]
7+
branches: [main]
8+
paths: [android/**]
99

1010
jobs:
1111
emerge:
@@ -22,8 +22,10 @@ jobs:
2222
- name: Set up JDK 17
2323
uses: actions/setup-java@v4
2424
with:
25-
java-version: '17'
26-
distribution: 'adopt'
25+
java-version: "17"
26+
distribution: "adopt"
27+
- name: Setup Gradle build action
28+
uses: actions/setup-gradle@v4
2729
- name: Emerge snapshots
2830
run: ./gradlew :app:emergeUploadSnapshotBundleDebug
2931
env:
@@ -46,8 +48,11 @@ jobs:
4648
- name: Set up JDK 17
4749
uses: actions/setup-java@v4
4850
with:
49-
java-version: '17'
50-
distribution: 'adopt'
51+
java-version: "17"
52+
distribution: "adopt"
53+
54+
- name: Setup Gradle build action
55+
uses: actions/setup-gradle@v4
5156

5257
- name: Ruby setup
5358
uses: ruby/setup-ruby@v1

.github/workflows/android_emerge_upload.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Emerge Android Size & Distribution
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
pull_request:
7-
branches: [ main ]
8-
paths: [ android/** ]
7+
branches: [main]
8+
paths: [android/**]
99

1010
jobs:
1111
build:
@@ -20,8 +20,10 @@ jobs:
2020
- name: Set up JDK 17
2121
uses: actions/setup-java@v4
2222
with:
23-
java-version: '17'
24-
distribution: 'adopt'
23+
java-version: "17"
24+
distribution: "adopt"
25+
- name: Setup Gradle build action
26+
uses: actions/setup-gradle@v4
2527
- name: Emerge analysis
2628
run: ./gradlew :app:emergeUploadReleaseAab
2729
env:

.github/workflows/android_release_build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Android Release Build
22

33
on:
44
release:
5-
types: [ published ]
5+
types: [published]
66

77
jobs:
88
build:
@@ -19,8 +19,11 @@ jobs:
1919
- name: Set up JDK
2020
uses: actions/setup-java@v4
2121
with:
22-
java-version: '17'
23-
distribution: 'adopt'
22+
java-version: "17"
23+
distribution: "adopt"
24+
25+
- name: Setup Gradle build action
26+
uses: actions/setup-gradle@v4
2427

2528
- name: Install Bundletool
2629
run: |

0 commit comments

Comments
 (0)