From d24a21482ba23d7751549f922d2f505dc6d627bd Mon Sep 17 00:00:00 2001 From: Alex Janka Date: Sun, 2 Jun 2024 11:45:16 +1000 Subject: [PATCH] fix+bump --- .gitea/workflows/deb.yaml | 4 ++-- Cargo.lock | 2 +- homekit-controller/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/deb.yaml b/.gitea/workflows/deb.yaml index 82cd7ff..c905ece 100644 --- a/.gitea/workflows/deb.yaml +++ b/.gitea/workflows/deb.yaml @@ -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" diff --git a/Cargo.lock b/Cargo.lock index b01513b..f7bba5a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1155,7 +1155,7 @@ dependencies = [ [[package]] name = "homekit-controller" -version = "0.6.5" +version = "0.6.6" dependencies = [ "chacha20poly1305", "ed25519-dalek", diff --git a/homekit-controller/Cargo.toml b/homekit-controller/Cargo.toml index a485935..2c43c18 100644 --- a/homekit-controller/Cargo.toml +++ b/homekit-controller/Cargo.toml @@ -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"