Update README.md #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build: | |
name: Build XCFramework | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: List Xcode details | |
run: | | |
xcodebuild -version | |
swift --version | |
- name: List project structure | |
run: | | |
ls -la | |
xcodebuild -list | |
- name: Make Build script executable | |
run: chmod +x ./.github/build.sh | |
- name: Build XCFramework | |
run: | | |
./.github/build.sh | |
env: | |
DEVELOPER_DIR: /Applications/Xcode.app/Contents/Developer | |
- name: Verify XCFramework | |
run: | | |
ls -la ./RunveyKit.xcframework | |
xcrun xcframework info ./RunveyKit.xcframework | |
- name: Create zip archive | |
run: zip -r ./RunveyKit.xcframework.zip ./RunveyKit.xcframework | |
- name: Upload artifact to Emerge | |
uses: EmergeTools/[email protected] | |
with: | |
build_type: release | |
artifact_path: ./RunveyKit.xcframework.zip | |
emerge_api_key: ${{ secrets.EMERGE_API_KEY }} | |
- name: Upload artifact to GitHub | |
uses: actions/upload-artifact@v3 | |
with: | |
name: RunveyKit.xcframework | |
path: ./RunveyKit.xcframework.zip |