Skip to content

Commit 4a5da18

Browse files
authored
fix(CI): fix upload assets and bump ledger dependencies (#40)
* fix(CI): fix upload assets * bump ledger sdk dependencies; address new warning
1 parent fc49a12 commit 4a5da18

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,27 +42,31 @@ jobs:
4242
cp ${{ needs.call_get_app_metadata.outputs.build_directory }}/compiled_app_binaries/flex/release/iota flex/
4343
cp ${{ needs.call_get_app_metadata.outputs.build_directory }}/compiled_app_binaries/flex/release/iota.hex flex/
4444
cp ${{ needs.call_get_app_metadata.outputs.build_directory }}/compiled_app_binaries/flex/release/app_flex.json flex/
45+
mkdir -p flex/icons
4546
cp rust-app/icons/iota_40x40.gif flex/icons/
4647
tar cfzv flex.tar.gz flex
4748
4849
mkdir nanosplus
4950
cp ${{ needs.call_get_app_metadata.outputs.build_directory }}/compiled_app_binaries/nanosplus/release/iota nanosplus/
5051
cp ${{ needs.call_get_app_metadata.outputs.build_directory }}/compiled_app_binaries/nanosplus/release/iota.hex nanosplus/
5152
cp ${{ needs.call_get_app_metadata.outputs.build_directory }}/compiled_app_binaries/nanosplus/release/app_nanosplus.json nanosplus/
53+
mkdir -p nanosplus/icons
5254
cp rust-app/icons/iota_14x14.gif nanosplus/icons/
5355
tar cfzv nanosplus.tar.gz nanosplus
5456
5557
mkdir nanox
5658
cp ${{ needs.call_get_app_metadata.outputs.build_directory }}/compiled_app_binaries/nanox/release/iota nanox/
5759
cp ${{ needs.call_get_app_metadata.outputs.build_directory }}/compiled_app_binaries/nanox/release/iota.hex nanox/
5860
cp ${{ needs.call_get_app_metadata.outputs.build_directory }}/compiled_app_binaries/nanox/release/app_nanox.json nanox/
61+
mkdir -p nanox/icons
5962
cp rust-app/icons/iota_14x14.gif nanox/icons/
6063
tar cfzv nanox.tar.gz nanox
61-
64+
6265
mkdir stax
6366
cp ${{ needs.call_get_app_metadata.outputs.build_directory }}/compiled_app_binaries/stax/release/iota stax/
6467
cp ${{ needs.call_get_app_metadata.outputs.build_directory }}/compiled_app_binaries/stax/release/iota.hex stax/
6568
cp ${{ needs.call_get_app_metadata.outputs.build_directory }}/compiled_app_binaries/stax/release/app_stax.json stax/
69+
mkdir -p stax/icons
6670
cp rust-app/icons/iota_32x32.gif stax/icons/
6771
tar cfzv stax.tar.gz stax
6872

rust-app/Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust-app/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ extra_debug = ["ledger-log/log_trace"]
4040
pending_review_screen = []
4141

4242
[target.'cfg(target_family = "bolos")'.dependencies]
43-
ledger_device_sdk = "1.24.7"
44-
ledger_secure_sdk_sys = "1.11.1"
43+
ledger_device_sdk = "1.27.1"
44+
ledger_secure_sdk_sys = "1.11.3"
4545

4646
[target.'cfg(target_family = "bolos")'.dev-dependencies.ledger_device_sdk]
47-
version = "1.24.7"
47+
version = "1.27.1"
4848
features = ["speculos"]
4949

5050
[[bin]]

rust-app/src/ui/nbgl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ impl UserInterface {
4141
self.do_refresh.replace(true);
4242
let success = NbglAddressReview::new()
4343
.glyph(&APP_ICON)
44-
.verify_str("Provide Public Key")
44+
.review_title("Provide Public Key")
4545
.show(&format!("{address}"));
4646
NbglReviewStatus::new()
4747
.status_type(StatusType::Address)

0 commit comments

Comments
 (0)