Skip to content

Commit 317feab

Browse files
committed
fix: filestructure change hence build instruction change
1 parent 5b9d103 commit 317feab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
with:
2121
node-version: '20'
2222
cache: 'npm'
23-
cache-dependency-path: 'src/package-lock.json'
23+
cache-dependency-path: 'package-lock.json'
2424

2525
- name: Install dependencies
26-
working-directory: src
26+
working-directory: .
2727
run: |
2828
npm install
2929
@@ -37,7 +37,7 @@ jobs:
3737
uses: android-actions/setup-android@v3
3838

3939
- name: Build Android APK
40-
working-directory: src
40+
working-directory: .
4141
run: |
4242
npx expo prebuild --platform android --clean
4343
cd android
@@ -47,7 +47,7 @@ jobs:
4747
- name: Create Release
4848
uses: softprops/action-gh-release@v1
4949
with:
50-
files: src/android/app/build/outputs/apk/release/app-release.apk
50+
files: android/app/build/outputs/apk/release/app-release.apk
5151
draft: false
5252
prerelease: false
5353
generate_release_notes: true

0 commit comments

Comments
 (0)