Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dovgopoly committed Dec 18, 2024
1 parent 042f600 commit b5debd5
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/build-mobile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ jobs:
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: 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
working-directory: aptos-mobile
run: |
zip -r android-artifacts.zip aptos-mobile
zip -r ios-artifacts.zip ios aptos-wasm
Expand All @@ -48,7 +48,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./android-artifacts.zip
asset_path: ./aptos-mobile/android-artifacts.zip
asset_name: android-artifacts.zip
asset_content_type: application/zip

Expand All @@ -58,6 +58,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./ios-artifacts.zip
asset_path: ./aptos-mobile/ios-artifacts.zip
asset_name: ios-artifacts.zip
asset_content_type: application/zip
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aptos-mobile/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aptos_mobile"
version = "0.2.5"
version = "0.3.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion aptos-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aptos_wasm_bindings"
version = "0.2.5"
version = "0.3.0"
edition = "2021"

[dependencies]
Expand Down

0 comments on commit b5debd5

Please sign in to comment.