Skip to content

Commit

Permalink
Fix the release script
Browse files Browse the repository at this point in the history
  • Loading branch information
tunmx committed Dec 23, 2024
1 parent b9c4977 commit f4277f2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release-sdks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,14 @@ jobs:
zip -r inspireface-linux-x86-manylinux2014-${{ env.VERSION }}.zip build/inspireface-linux-x86-manylinux2014-${{ env.VERSION }}
stat inspireface-linux-x86-manylinux2014-${{ env.VERSION }}.zip
# Step 7: Upload the zipped SDK files for the next job
- name: Upload SDK Artifacts
uses: actions/upload-artifact@v4
with:
name: sdk_files_manylinux2014_x86
path: |
inspireface-linux-x86-manylinux2014-${{ env.VERSION }}.zip
build_armv7_rv1106_armhf_uclibc:
name: Compile Linux-armv7 rv1106
runs-on: ubuntu-latest
Expand Down Expand Up @@ -424,6 +432,14 @@ jobs:
zip -r inspireface-linux-armv7-rv1106-armhf-uclibc-${{ env.VERSION }}.zip build/inspireface-linux-armv7-rv1106-armhf-uclibc-${{ env.VERSION }}
stat inspireface-linux-armv7-rv1106-armhf-uclibc-${{ env.VERSION }}.zip
# Step 9: Upload the zipped SDK files for the next job
- name: Upload SDK Artifacts
uses: actions/upload-artifact@v4
with:
name: sdk_files_armv7_rv1106_armhf_uclibc
path: |
inspireface-linux-armv7-rv1106-armhf-uclibc-${{ env.VERSION }}.zip
release:
name: Release SDKs to GitHub
needs: [ build_linux_x86, build_armv7_armhf, build_armv7_rv1109rv1126_armhf, build_linux_aarch64, build_android, build_ios, build_manylinux2014_x86, build_armv7_rv1106_armhf_uclibc]
Expand Down

0 comments on commit f4277f2

Please sign in to comment.