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.
1 parent 0dd7be6 commit 0236d19Copy full SHA for 0236d19
.github/workflows/main.yml
@@ -10,7 +10,7 @@ jobs:
10
build:
11
runs-on: ubuntu-latest
12
env:
13
- OPEN_API_KEY: ${{ secrets.OPEN_API_KEY }}
+ GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}
14
15
steps:
16
- name: Checkout
@@ -23,9 +23,18 @@ jobs:
23
java-version: 17
24
cache: gradle
25
26
+ - name: Set up Android SDK
27
+ uses: android-actions/setup-android@v2
28
+ with:
29
+ api-level: 33
30
+ build-tools: "33.0.2"
31
+
32
- name: Grant execute permission for gradlew
33
run: chmod +x gradlew
34
35
+ - name: Create local.properties
36
+ run: echo "sdk.dir=$ANDROID_SDK_ROOT" > local.properties
37
38
- name: Cache Gradle dependencies
39
uses: actions/cache@v3
40
with:
0 commit comments