Skip to content

Commit

Permalink
Fix release HAL crate workflow (#693)
Browse files Browse the repository at this point in the history
* Fix release HAL crate workflow

* Fix pyportal nightly build
  • Loading branch information
jbeaurivage authored Oct 25, 2023
1 parent 72e40ff commit 85ab423
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ jobs:
run: |
set -ex
# Install random crate to force update of the registry
cargo install lazy_static || true
# Force update of the registry
cargo update || true
cd "hal" && cargo publish --no-verify
Expand All @@ -84,8 +84,8 @@ jobs:
run: |
set -ex
# Install random crate to force update of the registry
cargo install lazy_static || true
# Force update of the registry
cargo update || true
sudo apt-get install -y jq
Expand Down
4 changes: 1 addition & 3 deletions boards/pygamer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,5 @@ fn panic(_info: &core::panic::PanicInfo) -> ! {
let mut pins = Pins::new(peripherals.PORT);
let _ = pins.d13.into_open_drain_output(&mut pins.port).set_high();

loop {
cortex_m::asm::udf()
}
cortex_m::asm::udf()
}

0 comments on commit 85ab423

Please sign in to comment.