Skip to content

Commit

Permalink
Fix asset naming in release script
Browse files Browse the repository at this point in the history
  • Loading branch information
ReneeVandervelde committed Feb 11, 2024
1 parent 845bde9 commit bf31a21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/releases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: build/output/android-${{ github.ref_name }}.aab
asset_path: build/output/Sleeps-${{ github.ref_name }}.aab
asset_name: Sleeps-${{ github.ref_name }}.aab
asset_content_type: application/octet-stream
-
Expand All @@ -76,6 +76,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: build/output/android-${{ github.ref_name }}.apk
asset_path: build/output/Sleeps-${{ github.ref_name }}.apk
asset_name: Sleeps-${{ github.ref_name }}.apk
asset_content_type: application/octet-stream

0 comments on commit bf31a21

Please sign in to comment.