Workflows Fix

This commit is contained in:
KoalaSat 2022-10-24 22:29:48 +02:00
parent 19114b7db9
commit 1cfc8bc1c7
No known key found for this signature in database
GPG Key ID: 2F7F61C6146AB157
2 changed files with 3 additions and 3 deletions

View File

@ -40,5 +40,5 @@ jobs:
- name: 'Upload .apk Release Artifact (for Release)'
uses: actions/upload-artifact@v3
with:
name: nostros-$(git describe --tags --abbrev=0).apk
name: nostros-${{ github.ref_name }}.apk
path: android/app/build/outputs/apk/release/app-release.apk

View File

@ -30,7 +30,7 @@ jobs:
- name: 'Download APK Artifact'
uses: actions/download-artifact@v3
with:
name: nostros-$(git describe --tags --abbrev=0).apk
name: nostros-${{ github.ref_name }}.apk
path: .
- name: 'Upload APK Asset'
id: upload-release-asset
@ -40,5 +40,5 @@ jobs:
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: app-release.apk
asset_name: nostros-$(git describe --tags --abbrev=0).apk
asset_name: nostros-${{ github.ref_name }}.apk
asset_content_type: application/apk