Add overlay for Xiaomi 12S Ultra (thor) and updated overlay for Lenovo Q706F #83
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Overlay | |
on: | |
pull_request: | |
branches: [pie] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out | |
uses: actions/checkout@main | |
- name: Prepare the environment | |
run: | | |
sudo apt -y install git-core git xmlstarlet | |
sudo apt update | |
- name: Run test scripts | |
run: | | |
cd tests | |
bash tests.sh | |
- name: Build APK's | |
run: | | |
cd build | |
bash build.sh | |
- name: Upload APK | |
uses: actions/[email protected] | |
with: | |
path: build/*.apk | |
name: Overlays |