Add SDK branch clones from other branches, resolves #4 #6
Workflow file for this run
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: CI | |
on: [push] | |
jobs: | |
build-logos: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
repository: Randomblock1/FleetsBGone | |
submodules: true | |
- name: Prepare Theos | |
uses: randomblock1/theos-action@main | |
- name: Build package | |
run: | | |
rm -f packages/* | |
make package FINALPACKAGE=1 | |
- name: Upload package | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "Package built by ${{ matrix.os }}" | |
path: ${{ github.workspace }}/packages/*.deb | |
# TODO: Add a job to build an Orion tweak |