Merge pull request #98 from KeystoneHQ/feat/zcash #86
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: iOS Build and Release | |
permissions: | |
contents: write | |
on: | |
push: | |
tags: | |
# Push events to every tag starting with "sdk", including those with / | |
- 'sdk**' | |
pull_request: | |
branches: | |
- 'master' | |
jobs: | |
build_ios: | |
name: Build iOS Frameworks | |
runs-on: macos-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly-2023-06-26 | |
override: true | |
target: x86_64-apple-darwin | |
components: rustfmt | |
- name: Build iOS Framework | |
run: | | |
rustup target add aarch64-apple-ios x86_64-apple-ios aarch64-apple-ios-sim | |
make generate_xcframework | |
- name: Move and zip Framework | |
id: zip-and-sha | |
run: | | |
mv target/URRegistryFFI.xcframework URRegistryFFI.xcframework | |
zip -r URRegistryFFI.xcframework.zip URRegistryFFI.xcframework | |
echo "XCFramework Checksum: $(shasum -a 256 URRegistryFFI.xcframework.zip | cut -b 1-64)" | |
XCF_CHECKSUM=$(shasum -a 256 URRegistryFFI.xcframework.zip | cut -b 1-64) | |
echo "XCFramework Checksum: $XCF_CHECKSUM" >> $GITHUB_STEP_SUMMARY | |
echo "FRAMEWORK_CHECKSUM=$XCF_CHECKSUM" >> $GITHUB_OUTPUT | |
- name: Attach artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: URRegistryFFI.xcframework.zip | |
path: URRegistryFFI.xcframework.zip | |
- name: Upload XCFramework to Release | |
if: github.ref_type == 'tag' | |
uses: svenstaro/[email protected] | |
with: | |
file: URRegistryFFI.xcframework.zip | |
asset_name: URRegistryFFI.xcframework.zip | |
tag: ${{ github.ref }} | |
overwrite: true | |
make_latest: false | |
body: "iOS XCFramework Checksum: ${{ steps.zip-and-sha.outputs.FRAMEWORK_CHECKSUM }}" | |