Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
c22dev authored Dec 10, 2023
1 parent cdc482f commit c4437d0
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Geranium Workflow Build

on:
push:
branches:
- '**'
workflow_dispatch:

jobs:
build:
name: Geranium Workflow Build
runs-on: macos-12

steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Theos
uses: Randomblock1/[email protected]
- name: Build IPA
run: bash ipabuild.sh
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: Geranium - Extract zip
path: /Users/runner/work/${{github.event.repository.name}}/${{github.event.repository.name}}/build/Geranium.tipa
- name: Clean up build
run: rm -rf build

0 comments on commit c4437d0

Please sign in to comment.