Skip to content

Commit 309f8eb

Browse files
committed
Fix : workflows
1 parent c7a4fcd commit 309f8eb

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.github/workflows/build-debug-apk.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,16 @@ jobs:
2020
- name: Grant execute permission for gradlew
2121
run: chmod +x gradlew
2222

23-
- name: Build debug apk
24-
uses: eskatos/[email protected]
23+
- name: Validate Gradle wrapper
24+
uses: gradle/[email protected]
25+
26+
- name: Build with gradle
27+
uses: gradle/[email protected]
2528
with:
2629
arguments: assembleDebug
2730

2831
- name: Upload debug apk
2932
uses: actions/upload-artifact@v3
3033
with:
3134
name: debug
32-
path: app/build/outputs/apk/debug
35+
path: app/build/outputs/apk/debug

.github/workflows/build-release-apk.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@ jobs:
2424
- name: Grant execute permission for gradlew
2525
run: chmod +x gradlew
2626

27-
- name: Build release apk
28-
uses: eskatos/[email protected]
27+
- name: Validate Gradle wrapper
28+
uses: gradle/[email protected]
29+
30+
- name: Build with gradle
31+
uses: gradle/[email protected]
2932
with:
3033
arguments: assembleRelease
3134

@@ -40,4 +43,4 @@ jobs:
4043
name: ${{ github.event.input.version }}
4144
tag_name: "v${{ github.event.inputs.version }}"
4245
target_commitish: ${{ env.TARGET_COMMITISH }}
43-
files: app/build/outputs/apk/release/app-release.apk
46+
files: app/build/outputs/apk/release/app-release.apk

0 commit comments

Comments
 (0)