Fix conditions #13
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: Build with RMPP Toolchain | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: eeems/remarkable-toolchain:latest-rmpp | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Build Application | |
run: | | |
mkdir ~/Tools | |
ln -rs /opt/codex/ferrari/* ~/Tools/remarkable-toolchain | |
bash make_shared_rmpp_aarch64 | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: xovi.so | |
path: xovi.so | |