Fix external storage

This commit is contained in:
LoveSy 2021-10-28 19:36:36 +08:00
parent befce5411b
commit 651318fd63
7 changed files with 6 additions and 0 deletions

View File

@ -205,6 +205,12 @@ jobs:
seclabel u:r:magisk:s0
oneshot
EOF
- name: Fix External Storage
run: |
wget -O- "$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/archive/$GITHUB_REF.tar.gz" | sudo tar --wildcards -zxvf- --strip-component=2 '*/x64/*'
sudo find system/system/priv-app -type d -exec chmod 0755 {} \;
sudo find system/system/priv-app -type f -exec chmod 0644 {} \;
sudo find system/system/priv-app -type d -exec chcon --reference=system/system/priv-app {} \;
- name: Integrate GApps
if: ${{ github.event.inputs.gapps_variant != 'none' && github.event.inputs.gapps_variant != '' }}
run: |