This commit is contained in:
parent
571010c07c
commit
d24a21482b
|
@ -13,9 +13,9 @@ jobs:
|
|||
- name: Check out repository code
|
||||
uses: actions/checkout@v3
|
||||
- name: Build
|
||||
run: "cargo build --release --target=aarch64-unknown-linux-gnu"
|
||||
run: "cargo build -p homekit-exporter --release --target=aarch64-unknown-linux-gnu"
|
||||
- name: Build .deb
|
||||
run: "cargo deb --target=aarch64-unknown-linux-gnu"
|
||||
run: "cargo deb -p homekit-exporter --target=aarch64-unknown-linux-gnu"
|
||||
- name: Add .deb to apt repository
|
||||
run: "curl --user alex:${{ secrets.PACKAGING_TOKEN }} --upload-file $(ls -t ./target/aarch64-unknown-linux-gnu/debian/*.deb | head -1) https://git.alexjanka.com/api/packages/alex/debian/pool/testing/main/upload"
|
||||
- name: "Release package"
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1155,7 +1155,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "homekit-controller"
|
||||
version = "0.6.5"
|
||||
version = "0.6.6"
|
||||
dependencies = [
|
||||
"chacha20poly1305",
|
||||
"ed25519-dalek",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "homekit-controller"
|
||||
version = "0.6.5"
|
||||
version = "0.6.6"
|
||||
edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
description = "Partial implementation of the HomeKit controller protocol"
|
||||
|
|
Loading…
Reference in a new issue