build_mobile #6
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: Get package version | |
working-directory: aptos-wasm | |
run: | | |
VERSION=$(grep '^version' Cargo.toml | sed -E 's/version = \"(.*)\"/\1/') | |
echo "VERSION=$VERSION" >> $GITHUB_ENV | |
# - 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 aptos-mobile | |
zip -r ios-artifacts.zip ios aptos-wasm | |
- name: Create Release | |
id: create_release | |
uses: softprops/action-gh-release@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag_name: ${{ env.VERSION }} | |
name: Release v${{ env.VERSION }} | |
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 |