From c24982705a3c06ccfda8be55f4f0c0aba83aa8bf Mon Sep 17 00:00:00 2001 From: Anton Date: Sat, 18 May 2024 18:18:13 +0300 Subject: [PATCH] Fix Node.js installation --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5fc2a49..653cc2f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,8 +8,8 @@ jobs: runs-on: ubuntu-22.04 container: saschpe/android-sdk:34-jdk22.0.1_8 steps: - - name: Install Node - run: apt install node.js + - name: Install Node.js (for Actions) + run: apt-get update && apt-get install -yqq node.js - name: Build APK run: ./gradlew build