mirror of
https://github.com/RoboSats/robosats.git
synced 2025-02-24 22:29:01 +00:00
Fix Desktop release artifacts
This commit is contained in:
parent
9da8588e79
commit
272fe7b6ec
25
.github/workflows/release.yml
vendored
25
.github/workflows/release.yml
vendored
@ -94,6 +94,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
body_path: release_notes.md
|
body_path: release_notes.md
|
||||||
generate_release_notes: true
|
generate_release_notes: true
|
||||||
|
draft: true
|
||||||
|
|
||||||
# Upload app-universal-release APK artifact asset
|
# Upload app-universal-release APK artifact asset
|
||||||
- name: 'Download universal APK Artifact'
|
- name: 'Download universal APK Artifact'
|
||||||
@ -166,8 +167,8 @@ jobs:
|
|||||||
- name: 'Download macOS Build Artifact'
|
- name: 'Download macOS Build Artifact'
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: robosats-desktop-${{ needs.check-versions.outputs.semver }}-mac-darwin-x64.zip
|
path: desktopApp/release-builds/Robosats-darwin-x64
|
||||||
path: .
|
name: robosats-desktop-${{ inputs.semver }}-mac-darwin-x64.zip
|
||||||
|
|
||||||
- name: 'Upload macOS Build Artifact'
|
- name: 'Upload macOS Build Artifact'
|
||||||
id: upload-release-mac-zip-asset
|
id: upload-release-mac-zip-asset
|
||||||
@ -176,15 +177,15 @@ jobs:
|
|||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
||||||
asset_path: robosats-desktop-${{ needs.check-versions.outputs.semver }}-mac-darwin-x64.zip
|
asset_path: desktopApp/release-builds/Robosats-darwin-x64
|
||||||
asset_name: robosats-desktop-${{ needs.check-versions.outputs.semver }}-mac-darwin-x64.zip
|
asset_name: robosats-desktop-${{ inputs.semver }}-mac-darwin-x64.zip
|
||||||
asset_content_type: application/zip
|
asset_content_type: application/zip
|
||||||
|
|
||||||
- name: 'Download linux Build Artifact'
|
- name: 'Download linux Build Artifact'
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: robosats-desktop-${{ needs.check-versions.outputs.semver }}-linux-x64.zip
|
path: desktopApp/release-builds/Robosats-linux-x64
|
||||||
path: .
|
name: robosats-desktop-${{ inputs.semver }}-linux-x64.zip
|
||||||
|
|
||||||
- name: 'Upload linux Build Artifact'
|
- name: 'Upload linux Build Artifact'
|
||||||
id: upload-release-linux-zip-asset
|
id: upload-release-linux-zip-asset
|
||||||
@ -193,15 +194,15 @@ jobs:
|
|||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
||||||
asset_path: robosats-desktop-${{ needs.check-versions.outputs.semver }}-linux-x64.zip
|
asset_path: desktopApp/release-builds/Robosats-linux-x64
|
||||||
asset_name: robosats-desktop-${{ needs.check-versions.outputs.semver }}-linux-x64.zip
|
asset_name: robosats-desktop-${{ inputs.semver }}-linux-x64.zip
|
||||||
asset_content_type: application/zip
|
asset_content_type: application/zip
|
||||||
|
|
||||||
- name: 'Download Windows Build Artifact'
|
- name: 'Download Windows Build Artifact'
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: robosats-desktop-${{ needs.check-versions.outputs.semver }}-win32-ia32.zip
|
path: desktopApp/release-builds/Robosats-win32-ia32
|
||||||
path: .
|
name: robosats-desktop-${{ inputs.semver }}-win32-ia32.zip
|
||||||
|
|
||||||
- name: 'Upload Windows Build Artifact'
|
- name: 'Upload Windows Build Artifact'
|
||||||
id: upload-release-win-zip-asset
|
id: upload-release-win-zip-asset
|
||||||
@ -210,6 +211,6 @@ jobs:
|
|||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
||||||
asset_path: robosats-desktop-${{ needs.check-versions.outputs.semver }}-win32-ia32.zip
|
asset_path: desktopApp/release-builds/Robosats-win32-ia32
|
||||||
asset_name: robosats-desktop-${{ needs.check-versions.outputs.semver }}-win32-ia32.zip
|
asset_name: robosats-desktop-${{ inputs.semver }}-win32-ia32.zip
|
||||||
asset_content_type: application/zip
|
asset_content_type: application/zip
|
@ -2,11 +2,14 @@ RoboSats v0.7.4 is now out! :rocket:
|
|||||||
|
|
||||||
# Changes
|
# Changes
|
||||||
## What's new
|
## What's new
|
||||||
- Websockets now working on Android app: this enables instant chat and Nostr order book features! @koalasat
|
### For Users
|
||||||
- First external coordinator now available: you can now see @lnp2pbot orders on RoboSats UI @koalasat
|
- You can now see @lnp2pbot orders on RoboSats mobile app @koalasat
|
||||||
- Better display coordinator info on the Create Order form @koalasat
|
- Changed URLs to https://robosats.org and new onion @koalasat
|
||||||
- Charts now depend on selected currency @femelo
|
- Order creation view now displays all available payment methods @koalasat
|
||||||
- Fixed exchange summary aggregatons @koalasat
|
- Test fixes @jerryfletcher21
|
||||||
|
- Libraries updates @KoalaSat
|
||||||
|
### For Coordinators
|
||||||
|
- Libraries updates @koalasat
|
||||||
|
|
||||||
# Android
|
# Android
|
||||||
|
|
||||||
@ -22,7 +25,7 @@ Smaller bundles for each CPU architecture available in the attachments.
|
|||||||
|
|
||||||
3. Verify the signer is actually ~~Reckless-Satoshi (fingerprints match): [B4AB5F19113D4125DDF217739C4585B561315571](https://keys.openpgp.org/vks/v1/by-fingerprint/B4AB5F19113D4125DDF217739C4585B561315571)~~ KoalaSat [8FCDBF574CCFD73DB68B00CC2F7F61C6146AB157](https://keys.openpgp.org/vks/v1/by-fingerprint/8FCDBF574CCFD73DB68B00CC2F7F61C6146AB157)
|
3. Verify the signer is actually ~~Reckless-Satoshi (fingerprints match): [B4AB5F19113D4125DDF217739C4585B561315571](https://keys.openpgp.org/vks/v1/by-fingerprint/B4AB5F19113D4125DDF217739C4585B561315571)~~ KoalaSat [8FCDBF574CCFD73DB68B00CC2F7F61C6146AB157](https://keys.openpgp.org/vks/v1/by-fingerprint/8FCDBF574CCFD73DB68B00CC2F7F61C6146AB157)
|
||||||
|
|
||||||
Alternatively you can also verify with the release with the SHA256 checksum.
|
Additionally, you can download it from [Izzysoft repository](https://apt.izzysoft.de/fdroid/) or [ZapStore](https://zapstore.dev/)
|
||||||
|
|
||||||
# Desktop
|
# Desktop
|
||||||
|
|
||||||
@ -33,10 +36,18 @@ Find the zip file that suits with your operative system:
|
|||||||
- [Mac](https://github.com/RoboSats/robosats/releases/download/v0.7.4-alpha/robosats-desktop-v0.7.4.alpha-mac-darwin-x64.zip)
|
- [Mac](https://github.com/RoboSats/robosats/releases/download/v0.7.4-alpha/robosats-desktop-v0.7.4.alpha-mac-darwin-x64.zip)
|
||||||
- [Linux](https://github.com/RoboSats/robosats/releases/download/v0.7.4-alpha/robosats-desktop-v0.7.4.alpha-linux-x64.zip)
|
- [Linux](https://github.com/RoboSats/robosats/releases/download/v0.7.4-alpha/robosats-desktop-v0.7.4.alpha-linux-x64.zip)
|
||||||
|
|
||||||
|
|
||||||
### Verify the app using GPG:
|
### Verify the app using GPG:
|
||||||
|
|
||||||
You can also verify with the release with the SHA256 checksum.
|
1. Download the ascii armored signature:
|
||||||
|
|
||||||
|
- [Windows](https://github.com/RoboSats/robosats/releases/download/v0.7.4-alpha/robosats-desktop-v0.7.4.alpha-win32-ia32.zip.asc)
|
||||||
|
- [Mac](https://github.com/RoboSats/robosats/releases/download/v0.7.4-alpha/robosats-desktop-v0.7.4.alpha-mac-darwin-x64.zip.asc)
|
||||||
|
- [Linux](https://github.com/RoboSats/robosats/releases/download/v0.7.4-alpha/robosats-desktop-v0.7.4.alpha-linux-x64.zip.asc)
|
||||||
|
|
||||||
|
3. Run this command on a directory that contains the apk file and and the ascii armored signature.
|
||||||
|
`gpg --verify robosats-v0.7.4.alpha-....asc`
|
||||||
|
|
||||||
|
4. Verify the signer is actually ~~Reckless-Satoshi (fingerprints match): [B4AB5F19113D4125DDF217739C4585B561315571](https://keys.openpgp.org/vks/v1/by-fingerprint/B4AB5F19113D4125DDF217739C4585B561315571)~~ KoalaSat [8FCDBF574CCFD73DB68B00CC2F7F61C6146AB157](https://keys.openpgp.org/vks/v1/by-fingerprint/8FCDBF574CCFD73DB68B00CC2F7F61C6146AB157)
|
||||||
|
|
||||||
# Docker Images
|
# Docker Images
|
||||||
|
|
||||||
@ -54,4 +65,3 @@ docker pull recksato/robosats-client:v0.7.4-alpha
|
|||||||
```
|
```
|
||||||
|
|
||||||
See [nodeapp/docker-compose.yml](https://github.com/Reckless-Satoshi/robosats/blob/2cd9d748706a8dcc0f03006b483acc6000e0572a/nodeapp/docker-compose.yml) for an example docker-compose usage of the `robosats-client` image.
|
See [nodeapp/docker-compose.yml](https://github.com/Reckless-Satoshi/robosats/blob/2cd9d748706a8dcc0f03006b483acc6000e0572a/nodeapp/docker-compose.yml) for an example docker-compose usage of the `robosats-client` image.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user