Merge pull request #4 from radixdlt/build_scrip_and_CD #1
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: CD | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- develop | |
permissions: | |
id-token: write | |
contents: read | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: macos-13-xlarge | |
steps: | |
- uses: RDXWorks-actions/checkout@main | |
- name: Install Rust Toolchain | |
uses: RDXWorks-actions/toolchain@master | |
with: | |
toolchain: nightly-2024-01-11 | |
default: true | |
target: x86_64-apple-ios aarch64-apple-ios aarch64-apple-ios-sim | |
- name: Run iOS build script | |
run: | | |
sh ./scripts/ios/release.sh |