Skip to content

Commit 64ff5f5

Browse files
committed
fix: correct workflow paths for project root
1 parent 32fceea commit 64ff5f5

2 files changed

Lines changed: 4 additions & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,33 +40,29 @@ jobs:
4040
${{ runner.os }}-
4141
4242
- name: Get dependencies
43-
working-directory: ./python_ide
4443
run: flutter pub get
4544

4645
- name: Run static analysis
47-
working-directory: ./python_ide
4846
run: flutter analyze --no-fatal-infos --no-fatal-warnings
4947

5048
- name: Build debug APK
51-
working-directory: ./python_ide
5249
run: flutter build apk --debug
5350

5451
- name: Build release APK
55-
working-directory: ./python_ide
5652
run: flutter build apk --release
5753

5854
- name: Upload debug APK
5955
uses: actions/upload-artifact@v4
6056
with:
6157
name: debug-apk
62-
path: python_ide/build/app/outputs/flutter-apk/app-debug.apk
58+
path: build/app/outputs/flutter-apk/app-debug.apk
6359
retention-days: 7
6460

6561
- name: Upload release APK
6662
uses: actions/upload-artifact@v4
6763
with:
6864
name: release-apk
69-
path: python_ide/build/app/outputs/flutter-apk/app-release.apk
65+
path: build/app/outputs/flutter-apk/app-release.apk
7066
retention-days: 30
7167

7268
- name: Upload build logs
@@ -75,6 +71,6 @@ jobs:
7571
with:
7672
name: build-logs
7773
path: |
78-
python_ide/build/logs/
79-
python_ide/android/.gradle/**/*.log
74+
build/logs/
75+
android/.gradle/**/*.log
8076
retention-days: 7

.github/workflows/validate.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ jobs:
2424
flutter config --no-analytics
2525
2626
- name: Get dependencies
27-
working-directory: ./python_ide
2827
run: flutter pub get
2928

3029
- name: Analyze code
31-
working-directory: ./python_ide
3230
run: flutter analyze --fatal-infos --fatal-warnings

0 commit comments

Comments
 (0)