Skip to content

Update main.yml

Update main.yml #3

Workflow file for this run

name: Build
on:
push:
branches: [main]
jobs:
build:
name: Swift 6.0
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Make Build executable
run: chmod +x script.sh
- name: Build
run: ./.github/build.sh
- name: Create RunveyKit XCFramework
- 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 }}