Skip to content

Commit

Permalink
Create ios.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nova8ossa authored Feb 4, 2024
1 parent c3fa9a3 commit 3ad69ea
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: iOS starter workflow

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

jobs:
build:
name: Build and Test default scheme using any available iPhone simulator
runs-on: macos-latest

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

- name: Compile Asset Catalog
env:
scheme: ${{ 'default' }}
platform: ${{ 'iphoneos' }}
run: |
xcrun actool ./Assets.xcassets --compile . --platform iphoneos --minimum-deployment-target 11.0 --app-icon AppIcon --output-partial-info-plist info.plist --output-format human-readable-text --notices --warnings --errors .

0 comments on commit 3ad69ea

Please sign in to comment.