fix: sort name in remote-storage test #7
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: Build and release | |
on: | |
push: | |
branches: ["master", "feat/actions"] | |
env: | |
CARGO_TERM_COLOR: always | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.16.5' | |
channel: 'stable' | |
- name: Install scripts runtime | |
run: pnpm install | |
- name: Install cargo-ndk | |
run: | | |
cargo install cargo-ndk | |
rustup target add aarch64-linux-android armv7-linux-androideabi x86_64-linux-android i686-linux-android | |
- name: Install flutter dependencies | |
run: flutter pub get | |
- name: Install flutter rust bridge | |
run: | | |
cargo install cargo-expand | |
cargo install '[email protected]' | |
- name: Generate codes | |
run: pnpm run generate | |
- name: Run tests | |
run: pnpm run test | |
- name: Build APK | |
run: pnpm run build:apk | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: artifacts/apk/*.apk | |
# tag: ${{ github.ref }} | |
tag: "v0.0.1" | |
overwrite: true | |
file_glob: true |