Skip to content

Commit

Permalink
Create swift.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cranci1 committed May 29, 2024
1 parent 6a487ae commit e3e0cdb
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build and Release IPA

on:
push:
branches:
- main

jobs:
build:
name: Build IPA
runs-on: macOS-latest

steps:
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: '20'

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

- name: Run ipabuild.sh
run: |
chmod +x ipabuild.sh
./ipabuild.sh
- name: Upload IPA artifact
uses: actions/upload-artifact@v4
with:
name: Osmium-IPA
path: build/Osmium.ipa

0 comments on commit e3e0cdb

Please sign in to comment.