Skip to content

Commit

Permalink
Update build.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
pwnless authored Oct 9, 2024
1 parent a5ed679 commit bcdf2f4
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,24 @@ concurrency:
cancel-in-progress: true
jobs:
build:
name: Build and test
name: Build
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: List available Xcode versions
run: ls /Applications | grep Xcode
- name: Install Theos
uses: Randomblock1/theos-action@v1.4
with:
# Where to install Theos
theos-dir: # optional, default is ${{ github.workspace }}/theos
# Where to clone Theos from (git URL)
theos-src: # optional, default is https://github.com/theos/theos
# Where to clone the iOS SDKs from (GitHub repository URL)
theos-sdks: # optional, default is https://github.com/theos/sdks
# Which branch to clone from SDK repo
theos-sdks-branch: # optional, default is master
# Whether to enable Orion, which adds support for Swift tweaks
orion: # optional, default is false
- name: Run build script
run: ./build.sh

0 comments on commit bcdf2f4

Please sign in to comment.