From 7f844a7f483894b0bde0bfb94ec12b0508a10d52 Mon Sep 17 00:00:00 2001 From: Erik Chi <59949156+erikziyunchi@users.noreply.github.com> Date: Wed, 10 Jul 2024 00:20:31 -0400 Subject: [PATCH] new: build ios --- .github/workflows/artifact.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/artifact.yml b/.github/workflows/artifact.yml index 4137d7a..10fc411 100644 --- a/.github/workflows/artifact.yml +++ b/.github/workflows/artifact.yml @@ -74,7 +74,13 @@ jobs: gomobile init - name: Build iOS run: | - echo "TODO: implement me!" + make ios + - name: Upload iOS Artifact + uses: actions/upload-artifact@v4 + with: + name: Watermob.xcframework + path: ./build/Watermob.xcframework + retention-days: 1 release: needs: @@ -97,5 +103,5 @@ jobs: name: ${{ github.ref_name }} files: | release-${{ github.ref_name }}/**/*.aar - release-${{ github.ref_name }}/**/*.xcframework.tar.gz + release-${{ github.ref_name }}/**/*.xcframework prerelease: true