Skip to content

fix ci

fix ci #41

name: Publish Release(s)
on:
push:
tags:
- 'flutter_nekoton_bridge-v*'
env:
CARGO_INCREMENTAL: "1"
permissions:
contents: write
jobs:
publish_github_release:
# macOS because we can cross-compile to all other platforms from it
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.24.0'
channel: 'stable'
cache: true
cache-key: flutter-:os:-:channel:-:version:-:arch:-:hash:-${{ hashFiles('**/pubspec.lock') }}
- uses: bluefireteam/melos-action@v3
- uses: goto-bus-stop/setup-zig@v2
- uses: KyleMayes/install-llvm-action@v2
with:
version: "15"
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.74.1
- name: Set up cargo cache
uses: actions/cache@v4
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- uses: nttld/setup-ndk@v1
with:
ndk-version: r25b
# - name: Build all library binaries
# run: melos run build
# TMP: replace with bash
- name: Build apple binaries
shell: bash
run: scripts/build-apple.sh
- name: Build android binaries
shell: bash
run: scripts/build-android.sh
- name: Create GitHub release
uses: softprops/action-gh-release@v2
with:
files: platform-build/*
publish_pub_release:
needs: publish_github_release
runs-on: ubuntu-latest
permissions:
id-token: write # This is required for authentication using OIDC
steps:
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.24.0'
channel: 'stable'
cache: true
cache-key: flutter-:os:-:channel:-:version:-:arch:-:hash:-${{ hashFiles('**/pubspec.lock') }}
- uses: bluefireteam/melos-action@v2
- name: Dry-run publish to pub.dev
run: melos publish -y --dry-run --scope="flutter_nekoton_bridge"
- name: Publish to pub.dev
run: melos publish -y --no-dry-run --scope="flutter_nekoton_bridge"