diff --git a/.github/workflows/prod-android.yml b/.github/workflows/prod-android.yml index eb92b9d4..2841bf77 100644 --- a/.github/workflows/prod-android.yml +++ b/.github/workflows/prod-android.yml @@ -66,20 +66,22 @@ jobs: - name: Make release dir run: mkdir app/release - + + - name: Delete unsigned files + run: | + rm app/build/outputs/*unsigned* + rm app/build/outputs/*unsigned* + continue-on-error: true + + - name: Delete temp apks + run: rm app/build/outputs/*temp* + continue-on-error: true + - name: Move files to release run: | mv app/build/outputs/*signed.aab app/release/ mv app/build/outputs/*signed.apk app/release/ - - name: Delete temp apks - run: rm app/release/*temp* - continue-on-error: true - - - name: Remove unsigned - run: cd app/release/ && for file in *-unsigned*; do mv "$file" "${file//-unsigned/}"; done - continue-on-error: true - - name: get-npm-version id: package-version uses: martinbeentjes/npm-get-version-action@v1.3.1