1.0.0-alpha-12 #18
Workflow file for this run
This file contains hidden or 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 to Maven Central | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| build-rust-macos-aarch64: | |
| if: startsWith(github.event.release.tag_name, 'v') | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Build Rust library | |
| working-directory: wrywebview | |
| run: cargo build --release --target aarch64-apple-darwin | |
| - name: Upload native library | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: native-darwin-aarch64 | |
| path: wrywebview/target/aarch64-apple-darwin/release/libcomposewebview_wry.dylib | |
| retention-days: 1 | |
| build-rust-macos-x86_64: | |
| if: startsWith(github.event.release.tag_name, 'v') | |
| runs-on: macos-15-intel | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Build Rust library | |
| working-directory: wrywebview | |
| run: cargo build --release --target x86_64-apple-darwin | |
| - name: Upload native library | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: native-darwin-x86_64 | |
| path: wrywebview/target/x86_64-apple-darwin/release/libcomposewebview_wry.dylib | |
| retention-days: 1 | |
| build-rust-linux: | |
| if: startsWith(github.event.release.tag_name, 'v') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev libxdo-dev | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Build Rust library | |
| working-directory: wrywebview | |
| run: cargo build --release --target x86_64-unknown-linux-gnu | |
| - name: Upload native library | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: native-linux-x86_64 | |
| path: wrywebview/target/x86_64-unknown-linux-gnu/release/libcomposewebview_wry.so | |
| retention-days: 1 | |
| build-rust-windows: | |
| if: startsWith(github.event.release.tag_name, 'v') | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Build Rust library | |
| working-directory: wrywebview | |
| run: cargo build --release --target x86_64-pc-windows-msvc | |
| - name: Upload native library | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: native-windows-x86_64 | |
| path: wrywebview/target/x86_64-pc-windows-msvc/release/composewebview_wry.dll | |
| retention-days: 1 | |
| publish: | |
| if: startsWith(github.event.release.tag_name, 'v') | |
| needs: | |
| - build-rust-macos-aarch64 | |
| - build-rust-macos-x86_64 | |
| - build-rust-linux | |
| - build-rust-windows | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set version from tag | |
| shell: bash | |
| run: | | |
| TAG="${{ github.event.release.tag_name }}" | |
| VERSION_NAME="${TAG#v}" | |
| echo "VERSION_NAME=$VERSION_NAME" >> "$GITHUB_ENV" | |
| sed -i.bak "s/^VERSION_NAME=.*/VERSION_NAME=$VERSION_NAME/" gradle.properties | |
| rm -f gradle.properties.bak | |
| - name: Download macOS aarch64 native library | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: native-darwin-aarch64 | |
| path: wrywebview/target/aarch64-apple-darwin/release/ | |
| - name: Download macOS x86_64 native library | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: native-darwin-x86_64 | |
| path: wrywebview/target/x86_64-apple-darwin/release/ | |
| - name: Download Linux native library | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: native-linux-x86_64 | |
| path: wrywebview/target/x86_64-unknown-linux-gnu/release/ | |
| - name: Download Windows native library | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: native-windows-x86_64 | |
| path: wrywebview/target/x86_64-pc-windows-msvc/release/ | |
| - name: Prepare JVM native resources | |
| run: | | |
| mkdir -p wrywebview/src/jvmMain/resources/darwin-aarch64 | |
| mkdir -p wrywebview/src/jvmMain/resources/darwin-x86-64 | |
| mkdir -p wrywebview/src/jvmMain/resources/linux-x86-64 | |
| mkdir -p wrywebview/src/jvmMain/resources/win32-x86-64 | |
| cp wrywebview/target/aarch64-apple-darwin/release/libcomposewebview_wry.dylib \ | |
| wrywebview/src/jvmMain/resources/darwin-aarch64/ | |
| cp wrywebview/target/x86_64-apple-darwin/release/libcomposewebview_wry.dylib \ | |
| wrywebview/src/jvmMain/resources/darwin-x86-64/ | |
| cp wrywebview/target/x86_64-unknown-linux-gnu/release/libcomposewebview_wry.so \ | |
| wrywebview/src/jvmMain/resources/linux-x86-64/ | |
| cp wrywebview/target/x86_64-pc-windows-msvc/release/composewebview_wry.dll \ | |
| wrywebview/src/jvmMain/resources/win32-x86-64/ | |
| - name: Verify native libraries | |
| run: | | |
| echo "=== Native libraries downloaded ===" | |
| ls -la wrywebview/target/aarch64-apple-darwin/release/ | |
| ls -la wrywebview/target/x86_64-apple-darwin/release/ | |
| ls -la wrywebview/target/x86_64-unknown-linux-gnu/release/ | |
| ls -la wrywebview/target/x86_64-pc-windows-msvc/release/ | |
| echo "=== Native libraries in resources ===" | |
| ls -la wrywebview/src/jvmMain/resources/darwin-aarch64/ | |
| ls -la wrywebview/src/jvmMain/resources/darwin-x86-64/ | |
| ls -la wrywebview/src/jvmMain/resources/linux-x86-64/ | |
| ls -la wrywebview/src/jvmMain/resources/win32-x86-64/ | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: "17" | |
| distribution: "temurin" | |
| - name: Setup Android SDK | |
| uses: android-actions/setup-android@v3 | |
| - name: Setup Rust (for UniFFI bindgen) | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Publish to Maven Central | |
| run: ./gradlew publishAndReleaseToMavenCentral --no-configuration-cache | |
| env: | |
| ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVENCENTRALUSERNAME }} | |
| ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVENCENTRALPASSWORD }} | |
| ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNINGINMEMORYKEY }} | |
| ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.SIGNINGKEYID }} | |
| ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNINGPASSWORD }} |