Skip to content

Commit

Permalink
actions: fix artifact name conflict with artifact v4
Browse files Browse the repository at this point in the history
  • Loading branch information
johnzupin committed Feb 5, 2024
1 parent bccc5a7 commit f8f4cbe
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/sdk_android_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: vvl-android
name: vvl-android-${{ matrix.abi }}
path: ./build-android/libs/lib/

release:
Expand Down Expand Up @@ -118,6 +118,7 @@ jobs:
command: "tar czf",
suffix: "tar.gz",
type: "application/x-gtar"

}
- {
name: "Upload Android Release Zip Artifact",
Expand All @@ -126,6 +127,8 @@ jobs:
suffix: "zip",
type: "application/zip"
}
include:
- abis: ${{ jobs.android.strategy.matrix.abis }}
steps:
- name: Get sdk version string
id: get_sdk_version
Expand All @@ -135,7 +138,7 @@ jobs:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: ${{ matrix.config.artifact }}
name: ${{ matrix.config.artifact }}-${{ matrix.abis }}
path: ./android-binaries-${{ steps.get_sdk_version.outputs.sdk_version }}
- name: Make release artifacts
run: |
Expand Down

0 comments on commit f8f4cbe

Please sign in to comment.