Release Apple Binaries #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: Release Apple Binaries | |
on: | |
push: | |
tags: "*" | |
jobs: | |
release-apple-xcframeworks: | |
runs-on: macos-13 | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_14.3.1.app/Contents/Developer | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check that SPM has correspond xcframeworks hash | |
run: ./scripts/check_spm_xcframeworks.sh | |
- name: Check SPM | |
run: swift test | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
draft: false | |
prerelease: true | |
files: ./binaries/*.xcframework.zip |