build_mobile #5
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: "build_mobile" | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
- name: Build Android | |
working-directory: aptos-mobile | |
run: | | |
bash ./build-android.sh | |
- name: Build iOS | |
working-directory: aptos-mobile | |
run: | | |
bash ./build-ios.sh | |
- name: Zip artifacts | |
working-directory: aptos-mobile | |
run: | | |
zip -r android-artifacts.zip android | |
zip -r ios-artifacts.zip ios | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
draft: false | |
prerelease: false | |
- name: Upload Android Artifacts | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./aptos-mobile/android-artifacts.zip | |
asset_name: android-artifacts.zip | |
asset_content_type: application/zip | |
- name: Upload iOS Artifacts | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./aptos-mobile/ios-artifacts.zip | |
asset_name: ios-artifacts.zip | |
asset_content_type: application/zip |