Skip to content

Update ShipinKit

Update ShipinKit #34

Workflow file for this run

name: Build
on:
push:
branches: [main]
jobs:
build:
name: Build XCFramework
runs-on: macos-latest
env:
PACKAGE_NAME: ShipinKit
steps:
- uses: actions/checkout@v4
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Build XCFramework
run: sh ./.github/build.sh $PACKAGE_NAME
- name: Upload artifact to Emerge
uses: EmergeTools/[email protected]
with:
build_type: release
artifact_path: ./build/${{ env.PACKAGE_NAME }}.xcframework.zip
emerge_api_key: ${{ secrets.EMERGE_API_KEY }}