Updated Tecno Pova 5 and Spark 10 Pro overlays from newer firmwares #64
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 |