Skip to content

Commit 6be84d9

Browse files
committed
Fix actions
Needed to set up rust and python for compilation
1 parent d0944fe commit 6be84d9

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/publish.yml

+7
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ jobs:
2121
with:
2222
distribution: 'temurin'
2323
java-version: '17'
24+
- name: Set up Rust
25+
uses: actions-rust-lang/setup-rust-toolchain@v1
26+
- name: Set up Python
27+
uses: actions/setup-python@v5
28+
with:
29+
python-version: '3.13'
2430
- name: Give execution permissions to the gradle wrapper
2531
run: chmod +x ./gradlew
2632
- name: Build
@@ -31,6 +37,7 @@ jobs:
3137
run: |
3238
echo "${{secrets.STORE_FILE}}" | base64 --decode > ${HOME}/keyfile.jks
3339
export STORE_FILE_PATH=${HOME}/keyfile.jks
40+
rustup target add x86_64-linux-android i686-linux-android aarch64-linux-android armv7-linux-androideabi
3441
./gradlew :app:assembleRelease
3542
./gradlew :app:buildApksRelease
3643
./gradlew :app:bundleRelease

0 commit comments

Comments
 (0)