Skip to content

Commit

Permalink
fix: nightlies 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abdallahmehiz committed Aug 20, 2024
1 parent 5ef886b commit 1662d51
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions .github/workflows/nightlies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,31 +48,30 @@ jobs:
declare -a apks=("universal" "arm64-v8a" "armeabi-v7a" "x86" "x86_64")
printf "%s\n" "${apks[@]}" | xargs -n 1 -I {} sh -c '
cp app/build/outputs/apk/preview/app-{}-preview-signed.apk mpvKt-{}-r${{ env.COMMIT_COUNT }}.apk
echo "{}=mpv-{}-r$(echo ${{ env.COMMIT_COUNT }}).apk" >> $GITHUB_ENV'
cp app/build/outputs/apk/preview/app-{}-preview-signed.apk mpvKt-{}-r${{ env.COMMIT_COUNT }}.apk'
- name: Upload the universal artifact
uses: actions/upload-artifact@v4
with:
path: ${{ env.universal }}
name: ${{ env.universal }}
path: mpvKt-universal*
name: universal
- name: Upload the arm64-v8a artifact
uses: actions/upload-artifact@v4
with:
path: ${{ env.arm64-v8a }}
name: ${{ env.arm64-v8a }}
path: mpvKt-arm64-v8a*
name: arm64-v8a
- name: Upload the armeabi-v7a artifact
uses: actions/upload-artifact@v4
with:
path: ${{ env.armeabi-v7a }}
name: ${{ env.armeabi-v7a }}
path: mpvKt-armeabi-v7a*
name: armeabi-v7a
- name: Upload the x86 artifact
uses: actions/upload-artifact@v4
with:
path: ${{ env.x86 }}
name: ${{ env.x86 }}
path: mpvKt-x86*
name: x86
- name: Upload the x86_64 artifact
uses: actions/upload-artifact@v4
with:
path: ${{ env.x86_64 }}
name: ${{ env.x86_64 }}
path: mpvKt-x86_64*
name: x86_64

0 comments on commit 1662d51

Please sign in to comment.