From eb00822377821a791da1bfa4de342fd5f573d8be Mon Sep 17 00:00:00 2001 From: Andrew Lee Rubinger Date: Mon, 29 Jul 2024 00:49:54 -0700 Subject: [PATCH] Issue #94: Try to upload file reference directly --- .github/workflows/ci-issue-94.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-issue-94.yml b/.github/workflows/ci-issue-94.yml index 776f300a..a21173c3 100644 --- a/.github/workflows/ci-issue-94.yml +++ b/.github/workflows/ci-issue-94.yml @@ -46,11 +46,15 @@ jobs: with: name: tbdex.kt path: target/bindgen-kotlin/tbdex/sdk/rust/tbdex.kt + - name: Debug Logging + run: ls -l target/aarch64-apple-darwin/release/libtbdex_uniffi.dylib + #TODO We need one of these for every environment built - name: Upload Native Library uses: actions/upload-artifact@v4.0.0 + if: ${{ matrix.os == 'macos-latest' }} with: - name: libtbdex_uniffi_${{ matrix.os }}.dylib - path: target/**/*.dylib + name: libtbdex_uniffi_aarch64_apple_darwin.dylib + path: target/aarch64-apple-darwin/release/libtbdex_uniffi.dylib lint: runs-on: ubuntu-latest @@ -88,8 +92,8 @@ jobs: - name: Download MacOS Native Library uses: actions/download-artifact@v4.0.0 with: - name: libtbdex_uniffi_macos-latest.dylib - path: bound/kt/src/main/resources/libtbdex_uniffi_aarch64_apple_darwin.dylib + name: libtbdex_uniffi_aarch64_apple_darwin.dylib + path: bound/kt/src/main/resources/ - name: Build and Test Kotlin Project run: | mkdir -p test-results