Name asset files in release correctly, remove finished todos

This commit is contained in:
stopflock
2025-10-06 14:48:13 -05:00
parent 69084be7bd
commit aeea503060
2 changed files with 9 additions and 5 deletions

View File

@@ -181,10 +181,16 @@ jobs:
with:
name: deflock_v${{ needs.get-version.outputs.version }}.ipa
- name: Rename files for release
run: |
mv app-release.apk deflock_v${{ needs.get-version.outputs.version }}.apk
mv app-release.aab deflock_v${{ needs.get-version.outputs.version }}.aab
mv Runner.ipa deflock_v${{ needs.get-version.outputs.version }}.ipa
- name: Attach assets to release
uses: softprops/action-gh-release@v2
with:
files: |
app-release.apk
app-release.aab
Runner.ipa
deflock_v${{ needs.get-version.outputs.version }}.apk
deflock_v${{ needs.get-version.outputs.version }}.aab
deflock_v${{ needs.get-version.outputs.version }}.ipa