修复:去掉 sudo,容器内已是 root 用户
Android APK 构建 / Build EmbyX-zh APK (push) Failing after 3m57s
Android APK 构建 / Build EmbyX-en APK (push) Failing after 4m3s
Android APK 构建 / Create GitHub Release (push) Has been skipped

This commit is contained in:
yuming
2026-05-17 13:13:35 +08:00
parent 6548e193dc
commit 29021df1dc
+8 -8
View File
@@ -31,14 +31,14 @@ jobs:
- name: Setup JDK 21
run: |
sudo apt-get update -qq
sudo apt-get install -y openjdk-21-jdk
apt-get update -qq
apt-get install -y openjdk-21-jdk
java -version
- name: Setup Node.js 22
run: |
curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash -
sudo apt-get install -y nodejs
curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
apt-get install -y nodejs
node --version
# 动态生成中文版 capacitor.config.jsonwebDir 指向 zh/ 目录)
@@ -101,14 +101,14 @@ jobs:
- name: Setup JDK 21
run: |
sudo apt-get update -qq
sudo apt-get install -y openjdk-21-jdk
apt-get update -qq
apt-get install -y openjdk-21-jdk
java -version
- name: Setup Node.js 22
run: |
curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash -
sudo apt-get install -y nodejs
curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
apt-get install -y nodejs
node --version
# 动态生成英文版 capacitor.config.jsonwebDir 指向 en/ 目录)