Skip to content

Commit 102fee5

Browse files
authored
[andr][ci] Make more fixed for the side libraries release (#154)
1 parent eda4fd3 commit 102fee5

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/integrations_android.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,18 +46,18 @@ jobs:
4646
- name: Upload Timber artifacts
4747
uses: actions/upload-artifact@v4
4848
with:
49-
name: capture-timber-${{ inputs.version }}.android.zip
49+
name: capture-timber-${{ inputs.version }}.android
5050
path: platform/jvm/capture-timber/build/repos/releases/io/bitdrift/capture-timber/${{ inputs.version }}
5151
if-no-files-found: error
5252
- name: Upload Apollo artifacts
5353
uses: actions/upload-artifact@v4
5454
with:
55-
name: capture-apollo3-${{ inputs.version }}.android.zip
55+
name: capture-apollo3-${{ inputs.version }}.android
5656
path: platform/jvm/capture-apollo3/build/repos/releases/io/bitdrift/capture-apollo3/${{ inputs.version }}
5757
if-no-files-found: error
5858
- name: Upload Gradle Plugin artifacts
5959
uses: actions/upload-artifact@v4
6060
with:
61-
name: capture-plugin-${{ inputs.version }}.android.zip
61+
name: capture-plugin-${{ inputs.version }}.android
6262
path: platform/jvm/capture-plugin/build/repos/releases/io/bitdrift/capture-plugin/${{ inputs.version }}
6363
if-no-files-found: error

.github/workflows/release_gh.yaml

+6-7
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ jobs:
150150
with:
151151
sha: ${{ inputs.sha }}
152152
secrets: inherit
153-
build-android-capture-timber:
154-
name: Build Capture Timber
153+
build-android-integrations:
154+
name: Build Android Integrations
155155
needs: ["verify-version"]
156156
permissions:
157157
contents: write
@@ -172,13 +172,12 @@ jobs:
172172
"build-android-macos-x86_64",
173173
"build-android-macos-arm64",
174174
"build-android-example-apps",
175-
"build-android-capture-timber",
175+
"build-android-integrations",
176176
]
177177
steps:
178178
- uses: actions/checkout@v4
179179
with:
180180
ref: ${{ inputs.sha }}
181-
182181
# Download all artifacts to current working directory
183182
- uses: actions/download-artifact@v4
184183
with:
@@ -197,13 +196,13 @@ jobs:
197196
name: Android Example Apps
198197
- uses: actions/download-artifact@v4
199198
with:
200-
name: capture-timber-${{ inputs.version }}.android.zip
199+
name: capture-timber-${{ inputs.version }}.android
201200
- uses: actions/download-artifact@v4
202201
with:
203-
name: capture-apollo3-${{ inputs.version }}.android.zip
202+
name: capture-apollo3-${{ inputs.version }}.android
204203
- uses: actions/download-artifact@v4
205204
with:
206-
name: capture-plugin-${{ inputs.version }}.android.zip
205+
name: capture-plugin-${{ inputs.version }}.android
207206
- name: Prepare Android artifacts
208207
run: ./ci/gh_prepare_android_artifacts.sh "$VERSION"
209208
env:

.github/workflows/release_public.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ jobs:
9090
run: |
9191
gh release download "v$VERSION" -p 'Capture*.android.zip'
9292
gh release download "v$VERSION" -p 'capture-timber*.android.zip'
93+
gh release download "v$VERSION" -p 'capture-apollo3*.android.zip'
9394
gh release download "v$VERSION" -p 'capture-plugin*.android.zip'
9495
env:
9596
VERSION: ${{ inputs.version }}

0 commit comments

Comments
 (0)