specify orientation flags during intitial scene creation #78
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 | |
on: push | |
jobs: | |
build: | |
name: Build Tweak | |
runs-on: macOS-latest | |
env: | |
THEOS: theos | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Install Dependencies | |
run: brew install ldid xz | |
- name: Setup Theos | |
uses: actions/checkout@master | |
with: | |
repository: theos/theos | |
ref: d84bb676f68ce73a72e5897944af394fb06eb13c | |
path: theos | |
submodules: recursive | |
- name: Download SDKs | |
run: | | |
curl -LO https://github.com/theos/sdks/releases/download/master-146e41f/iPhoneOS15.6.sdk.tar.xz | |
TMP=$(mktemp -d) | |
tar -xf iPhoneOS15.6.sdk.tar.xz -C $TMP | |
mv $TMP/iPhoneOS15.6.sdk theos/sdks | |
rm -r iPhoneOS15.6.sdk.tar.xz $TMP | |
- name: Build Package | |
id: build_package | |
run: | | |
make package FINALPACKAGE=1 messages=yes | |
echo "::set-output name=package::$(ls -t packages | head -n1)" |