Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cranci1 authored Feb 13, 2024
1 parent 2772328 commit 7c459bf
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build IPA

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Xcode
uses: actions/setup-xcode@v2
with:
xcode-version: '13'

- name: Make ipabuild.sh executable
run: chmod +x ipabuild.sh

- name: Run ipabuild.sh
run: ./ipabuild.sh

0 comments on commit 7c459bf

Please sign in to comment.