Skip to content

Commit

Permalink
fix: ci send error apk to group
Browse files Browse the repository at this point in the history
Signed-off-by: Next Alone <[email protected]>
  • Loading branch information
NextAlone committed Jul 24, 2024
1 parent 1b0c450 commit 8420e3f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ jobs:
sed -i '[email protected]@org.telegram.messenger@' TMessagesProj/build.gradle.kts
sed -i '[email protected]@org.telegram.messenger@' TMessagesProj/google-services.json
./gradlew TMessagesProj:assembleRelease
find TMessagesProj/build/outputs/apk -name '*arm64*.apk' -exec mv {} TMessagesProj/build/outputs/apk/Release/Nnngram-arm64-v8a-${{ env.SHA7 }}-Telegram.apk \;
echo "APK_FILE=$(find TMessagesProj/build/outputs/apk -name '*arm64*.apk')" >> $GITHUB_ENV
- uses: actions/upload-artifact@master
Expand Down Expand Up @@ -157,7 +158,7 @@ jobs:
- name: find apk
run: |
mkdir apks
find artifacts -name "Telegram/*.apk" -exec rm {} \;
find artifacts -name "*Telegram.apk" -exec rm {} \;
find artifacts -name "*.apk" -exec cp {} apks \;
echo "APK_FILE_UPLOAD=$(find apks -name '*arm64*.apk')" >> $GITHUB_ENV
Expand Down

0 comments on commit 8420e3f

Please sign in to comment.