Skip to content

Commit

Permalink
Create make.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
BananeRapeuse authored Aug 23, 2024
1 parent b3ac93d commit f17d224
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Xcode - Build and Analyze

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
name: Build and analyse default scheme using xcodebuild command
runs-on: macos-13

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Theos
run: bash -c "$(curl -fsSL https://raw.githubusercontent.com/Team-Failure/theos/master/bin/install-theos)"

- name: Setup Environment
run: echo "THEOS=~/theos" >> $GITHUB_ENV

- name: Make Package
run: make package

- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: arm64e-patcher.deb
path: |
${{ github.workspace }}/

0 comments on commit f17d224

Please sign in to comment.