mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2026-07-07 09:51:34 +00:00
update ci
This commit is contained in:
parent
f153a34d9b
commit
0ae7319933
2 changed files with 27 additions and 3 deletions
2
.github/workflows/flutter_release.yaml
vendored
2
.github/workflows/flutter_release.yaml
vendored
|
|
@ -18,7 +18,7 @@ jobs:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: 'true'
|
submodules: recursive
|
||||||
|
|
||||||
- name: Set Up Java
|
- name: Set Up Java
|
||||||
uses: actions/setup-java@v3.12.0
|
uses: actions/setup-java@v3.12.0
|
||||||
|
|
|
||||||
28
.github/workflows/flutter_test.yaml
vendored
28
.github/workflows/flutter_test.yaml
vendored
|
|
@ -6,6 +6,9 @@ on:
|
||||||
- main
|
- main
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
|
# Allows you to run this workflow manually from the Actions tab
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
@ -14,7 +17,29 @@ jobs:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
submodules: 'true'
|
# This ensures submodules are cloned
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
|
# Debug: Echo current directory contents
|
||||||
|
- name: List root directory contents
|
||||||
|
run: |
|
||||||
|
pwd
|
||||||
|
ls -la
|
||||||
|
|
||||||
|
# Debug: Recursive directory structure
|
||||||
|
- name: Show full directory structure
|
||||||
|
run: |
|
||||||
|
echo "Full directory structure:"
|
||||||
|
tree -L 3
|
||||||
|
|
||||||
|
# Debug: Submodule status and details
|
||||||
|
- name: Check submodule status
|
||||||
|
run: |
|
||||||
|
echo "Submodule status:"
|
||||||
|
git submodule status
|
||||||
|
|
||||||
|
echo "\nSubmodule details:"
|
||||||
|
git submodule foreach 'echo $path: && pwd && ls -la'
|
||||||
|
|
||||||
- name: Decode android/upload.jks
|
- name: Decode android/upload.jks
|
||||||
run: echo "${{ secrets.UPLOAD_KEYSTORE_JKS }}" | base64 --decode > android/upload.jks
|
run: echo "${{ secrets.UPLOAD_KEYSTORE_JKS }}" | base64 --decode > android/upload.jks
|
||||||
|
|
@ -22,7 +47,6 @@ jobs:
|
||||||
- name: Decode android/key.properties
|
- name: Decode android/key.properties
|
||||||
run: echo "${{ secrets.KEY_PROPERTIES }}" | base64 --decode > android/key.properties
|
run: echo "${{ secrets.KEY_PROPERTIES }}" | base64 --decode > android/key.properties
|
||||||
|
|
||||||
|
|
||||||
- name: Set up Flutter
|
- name: Set up Flutter
|
||||||
uses: subosito/flutter-action@v2
|
uses: subosito/flutter-action@v2
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue