Skip to content
This repository was archived by the owner on Nov 20, 2024. It is now read-only.

Commit eb19e01

Browse files
committed
Github actions fix
1 parent 2d7e4a6 commit eb19e01

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/main.yml

+6-8
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
tags:
44
- '*'
55

6-
name: Release Builds
6+
name: Release Build
77
jobs:
88
linux:
99
name: Android
@@ -14,17 +14,15 @@ jobs:
1414
java-version: '12.x'
1515

1616
- uses: actions/checkout@v2
17-
with:
18-
path: 'app'
1917

20-
- run: |
21-
cd app
22-
npm i
23-
npm run release-android
18+
- run: npm i
19+
- run: npx jetifier
20+
- run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
21+
- run: npm run release-android
2422

2523
- name: Publish Release
2624
uses: ncipollo/release-action@v1
2725
with:
28-
artifacts: 'app/android/app/build/outputs/apk/release/app-release.apk'
26+
artifacts: 'android/app/build/outputs/apk/release/app-release.apk'
2927
token: ${{ secrets.TOKEN }}
3028
allowUpdates: true

0 commit comments

Comments
 (0)