From 7db4e89602519dd9a7ddf865d5776cdc643ff4bc Mon Sep 17 00:00:00 2001 From: Miguel Juarez Lopez Date: Tue, 10 Dec 2024 09:09:53 -0500 Subject: [PATCH] [andr][ci] Make more fixed for the side libraries release --- .github/workflows/integrations_android.yaml | 6 +++--- .github/workflows/release_gh.yaml | 13 ++++++------- .github/workflows/release_public.yaml | 1 + 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/integrations_android.yaml b/.github/workflows/integrations_android.yaml index 577497ee..7f9e977e 100644 --- a/.github/workflows/integrations_android.yaml +++ b/.github/workflows/integrations_android.yaml @@ -46,18 +46,18 @@ jobs: - name: Upload Timber artifacts uses: actions/upload-artifact@v4 with: - name: capture-timber-${{ inputs.version }}.android.zip + name: capture-timber-${{ inputs.version }}.android path: platform/jvm/capture-timber/build/repos/releases/io/bitdrift/capture-timber/${{ inputs.version }} if-no-files-found: error - name: Upload Apollo artifacts uses: actions/upload-artifact@v4 with: - name: capture-apollo3-${{ inputs.version }}.android.zip + name: capture-apollo3-${{ inputs.version }}.android path: platform/jvm/capture-apollo3/build/repos/releases/io/bitdrift/capture-apollo3/${{ inputs.version }} if-no-files-found: error - name: Upload Gradle Plugin artifacts uses: actions/upload-artifact@v4 with: - name: capture-plugin-${{ inputs.version }}.android.zip + name: capture-plugin-${{ inputs.version }}.android path: platform/jvm/capture-plugin/build/repos/releases/io/bitdrift/capture-plugin/${{ inputs.version }} if-no-files-found: error diff --git a/.github/workflows/release_gh.yaml b/.github/workflows/release_gh.yaml index 9f10bfa5..6bcb2eda 100644 --- a/.github/workflows/release_gh.yaml +++ b/.github/workflows/release_gh.yaml @@ -150,8 +150,8 @@ jobs: with: sha: ${{ inputs.sha }} secrets: inherit - build-android-capture-timber: - name: Build Capture Timber + build-android-integrations: + name: Build Android Integrations needs: ["verify-version"] permissions: contents: write @@ -172,13 +172,12 @@ jobs: "build-android-macos-x86_64", "build-android-macos-arm64", "build-android-example-apps", - "build-android-capture-timber", + "build-android-integrations", ] steps: - uses: actions/checkout@v4 with: ref: ${{ inputs.sha }} - # Download all artifacts to current working directory - uses: actions/download-artifact@v4 with: @@ -197,13 +196,13 @@ jobs: name: Android Example Apps - uses: actions/download-artifact@v4 with: - name: capture-timber-${{ inputs.version }}.android.zip + name: capture-timber-${{ inputs.version }}.android - uses: actions/download-artifact@v4 with: - name: capture-apollo3-${{ inputs.version }}.android.zip + name: capture-apollo3-${{ inputs.version }}.android - uses: actions/download-artifact@v4 with: - name: capture-plugin-${{ inputs.version }}.android.zip + name: capture-plugin-${{ inputs.version }}.android - name: Prepare Android artifacts run: ./ci/gh_prepare_android_artifacts.sh "$VERSION" env: diff --git a/.github/workflows/release_public.yaml b/.github/workflows/release_public.yaml index 68404a9b..e610051c 100644 --- a/.github/workflows/release_public.yaml +++ b/.github/workflows/release_public.yaml @@ -90,6 +90,7 @@ jobs: run: | gh release download "v$VERSION" -p 'Capture*.android.zip' gh release download "v$VERSION" -p 'capture-timber*.android.zip' + gh release download "v$VERSION" -p 'capture-apollo3*.android.zip' gh release download "v$VERSION" -p 'capture-plugin*.android.zip' env: VERSION: ${{ inputs.version }}