mirror of
https://github.com/RoboSats/robosats.git
synced 2025-09-13 00:56:22 +00:00
Fix release workflow
This commit is contained in:
14
.github/workflows/release.yml
vendored
14
.github/workflows/release.yml
vendored
@ -103,6 +103,12 @@ jobs:
|
||||
name: app-universal-release.apk
|
||||
path: .
|
||||
|
||||
- name: 'Debug: List Downloaded Files'
|
||||
run: |
|
||||
echo "Current directory: $(pwd)"
|
||||
find . -type f -name "*.apk" | sort
|
||||
ls -la
|
||||
|
||||
- name: 'Upload universal APK Asset'
|
||||
id: upload-universal-release-asset
|
||||
uses: actions/upload-release-asset@v1
|
||||
@ -110,7 +116,7 @@ jobs:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
||||
asset_path: ./app-universal-release.apk
|
||||
asset_path: ./app-universal-release-unsigned-signed.apk
|
||||
asset_name: robosats-${{ needs.check-versions.outputs.semver }}-universal.apk
|
||||
asset_content_type: application/apk
|
||||
|
||||
@ -127,7 +133,7 @@ jobs:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
||||
asset_path: ./app-arm64-v8a-release.apk
|
||||
asset_path: ./app-arm64-v8a-release-unsigned-signed.apk
|
||||
asset_name: robosats-${{ needs.check-versions.outputs.semver }}-arm64-v8a.apk
|
||||
asset_content_type: application/apk
|
||||
|
||||
@ -144,7 +150,7 @@ jobs:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
||||
asset_path: ./app-armeabi-v7a-release.apk
|
||||
asset_path: ./app-armeabi-v7a-release-unsigned-signed.apk
|
||||
asset_name: robosats-${{ needs.check-versions.outputs.semver }}-armeabi-v7a.apk
|
||||
asset_content_type: application/apk
|
||||
|
||||
@ -161,7 +167,7 @@ jobs:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
||||
asset_path: ./app-x86_64-release.apk
|
||||
asset_path: ./app-x86_64-release-unsigned-signed.apk
|
||||
asset_name: robosats-${{ needs.check-versions.outputs.semver }}-x86_64.apk
|
||||
asset_content_type: application/apk
|
||||
|
||||
|
||||
@ -43,7 +43,7 @@ const TopBar = (): React.JSX.Element => {
|
||||
size='large'
|
||||
onClick={() => setShowNotificationsDrawer((s) => !s)}
|
||||
disabled={settings.connection !== 'nostr'}
|
||||
loading={loadingNotifications}
|
||||
loading={loadingNotifications && settings.connection === 'nostr'}
|
||||
endIcon={<Notifications />}
|
||||
/>
|
||||
</Grid>
|
||||
|
||||
Reference in New Issue
Block a user