Release v0.2.1 #3
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: Publish Android | |
on: | |
release: | |
types: [ published ] | |
jobs: | |
publish-package: | |
runs-on: [ "macos-14" ] | |
env: | |
TERM: xterm | |
GITHUB_TOKEN: ${{ secrets.git_pass }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Build and Test Android | |
run: | | |
brew install protobuf | |
cargo clean | |
make clean-mobile-build | |
make test-android | |
- name: Publish Package | |
run: | | |
export LIB_VERSION=${GITHUB_REF#refs/tags/} | |
echo "Publishing version $LIB_VERSION" | |
make publish-android |