Skip to content

Commit

Permalink
0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
kuaifan committed Apr 22, 2024
1 parent 3fe56f4 commit b58d282
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: |
cd resources/mobile/platforms/android/eeuiApp
chmod +x gradlew
./gradlew assembleRelease
./gradlew assembleRelease --quiet
- name: Upload File
env:
Expand Down
3 changes: 2 additions & 1 deletion electron/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,9 @@ function androidUpload(url) {
uploadOras[filename] = ora(`Upload [0%] ${filename}`).start()
},
retryNumber: 3
}).then(_ => {
}).then(res => {
uploadOras[filename].succeed(`Upload [100%] ${filename}`)
console.log(res);
}).catch(_ => {
uploadOras[filename].fail(`Upload [fail] ${filename}`)
})
Expand Down

0 comments on commit b58d282

Please sign in to comment.