Skip to content

Commit

Permalink
tiny fix in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Predidit committed May 4, 2024
1 parent e3f9433 commit 20e473f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,10 @@
- name: List files in android_outputs directory
run: ls -l android_outputs
- name: Copy android build file to unsigned floder
run: cp android_outputs/* build/unsigned/bilineo_android_${{ env.tag }}.apk
run: |
mkdir build/unsigned
mkdir build/signed
cp android_outputs/* build/unsigned/bilineo_android_${{ env.tag }}.apk
- name: Sign APK
uses: Tlaster/android-sign@v1
Expand Down

0 comments on commit 20e473f

Please sign in to comment.