Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,3 +140,13 @@ jobs:
- name: Test ravedude
run: |
cargo test --manifest-path ravedude/Cargo.toml

crates_io_release:
name: "release-plz"
runs-on: ubuntu-latest
steps:
- name: Run release-plz
uses: MarcoIeni/release-plz-action@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
3 changes: 3 additions & 0 deletions arduino-hal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,11 @@ embedded-hal = "1.0"
ufmt = "0.2.0"

[dependencies.avr-hal-generic]
version = "0.1.0"
path = "../avr-hal-generic/"

[dependencies.atmega-hal]
version = "0.1.0"
path = "../mcu/atmega-hal/"
optional = true

Expand All @@ -54,6 +56,7 @@ optional = true
features = ["disable-device-selection-error"]

[dependencies.attiny-hal]
version = "0.1.0"
path = "../mcu/attiny-hal/"
optional = true

Expand Down
2 changes: 1 addition & 1 deletion mcu/atmega-hal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ disable-device-selection-error = []
docsrs = ["atmega328p"]

[dependencies]
avr-hal-generic = { path = "../../avr-hal-generic/" }
avr-hal-generic = { version="0.1.0", path = "../../avr-hal-generic/" }

[dependencies.avr-device]
version = "0.7"
Expand Down
2 changes: 1 addition & 1 deletion mcu/attiny-hal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ disable-device-selection-error = []
docsrs = ["attiny85"]

[dependencies]
avr-hal-generic = { path = "../../avr-hal-generic/" }
avr-hal-generic = { version = "0.1.0", path = "../../avr-hal-generic/" }

[dependencies.avr-device]
version = "0.7"
Expand Down