Skip to content

Commit a25d0ef

Browse files
committed
chore: Move backend to its own directory
1 parent 6c21d9f commit a25d0ef

File tree

345 files changed

+9
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

345 files changed

+9
-3
lines changed

.github/workflows/build-release.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,29 +34,35 @@ jobs:
3434

3535
- name: Decode Keystore
3636
run: |
37+
cd frontend
3738
echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 --decode > upload-keystore.jks
3839
echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 --decode > android/upload-keystore.jks
3940
ls -l
4041
4142
- name: Create key.properties
4243
run: |
44+
cd frontend
4345
echo "storePassword=${{ secrets.KEYSTORE_PASSWORD }}" > android/key.properties
4446
echo "keyPassword=${{ secrets.KEY_PASSWORD }}" >> android/key.properties
4547
echo "keyAlias=${{ secrets.KEY_ALIAS }}" >> android/key.properties
4648
echo "storeFile=upload-keystore.jks" >> android/key.properties
4749
cat android/key.properties
4850
4951
- name: Install Dependencies
50-
run: flutter pub get
52+
run: |
53+
cd frontend
54+
flutter pub get
5155
5256
- name: Build APK
53-
run: flutter build apk --release
57+
run: |
58+
cd frontend
59+
flutter build apk --release
5460
5561
- name: Upload APK
5662
uses: actions/upload-artifact@v4
5763
with:
5864
name: release-apk
59-
path: build/app/outputs/flutter-apk/app-release.apk
65+
path: frontend/build/app/outputs/flutter-apk/app-release.apk
6066

6167
release:
6268
name: Create Release

android/app/.cxx/Debug/3a4941z3/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 renamed to frontend/android/app/.cxx/Debug/3a4941z3/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2

File renamed without changes.

android/app/.cxx/Debug/3a4941z3/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 renamed to frontend/android/app/.cxx/Debug/3a4941z3/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1

File renamed without changes.

android/app/.cxx/Debug/3a4941z3/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 renamed to frontend/android/app/.cxx/Debug/3a4941z3/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2

File renamed without changes.

android/app/.cxx/Debug/3a4941z3/arm64-v8a/.cmake/api/v1/reply/cache-v2-4463e2b4952f1165d25f.json renamed to frontend/android/app/.cxx/Debug/3a4941z3/arm64-v8a/.cmake/api/v1/reply/cache-v2-4463e2b4952f1165d25f.json

File renamed without changes.

android/app/.cxx/Debug/3a4941z3/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-c755834fb64dff795dba.json renamed to frontend/android/app/.cxx/Debug/3a4941z3/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-c755834fb64dff795dba.json

File renamed without changes.

android/app/.cxx/Debug/3a4941z3/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-d51b69bda6fef53e88cd.json renamed to frontend/android/app/.cxx/Debug/3a4941z3/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-d51b69bda6fef53e88cd.json

File renamed without changes.

0 commit comments

Comments
 (0)