Skip to content

Commit

Permalink
actions: Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
iscle committed Mar 13, 2024
1 parent 2d0b634 commit fa0adbc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
abi: ['armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64']

steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4

- name: Build with CMake
run: |
Expand All @@ -28,8 +29,8 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: compiled-binaries
path: libv4a_re_*.so
name: libv4a_re_${{ matrix.abi }}
path: libv4a_re_${{ matrix.abi }}.so

package:
needs: build
Expand Down

0 comments on commit fa0adbc

Please sign in to comment.