Сборка артефактов на PR #2
Workflow file for this run
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: Publish Frameworks | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: 'latest' | |
- name: Run build script | |
run: | | |
chmod +x ./scripts/build.sh | |
./scripts/build.sh | |
- name: Upload XCFrameworks as Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: xcframeworks | |
path: build/** |