Skip to content

Commit ba95843

Browse files
committed
1.0.0 - Improved Usability
Added tokio, log, tracing-subscriber, error-stack, and clap Updated btleplug and rust edition
1 parent 483bbfd commit ba95843

File tree

7 files changed

+949
-623
lines changed

7 files changed

+949
-623
lines changed

.github/workflows/release.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
on:
2+
release:
3+
types: [created]
4+
5+
jobs:
6+
release:
7+
name: release ${{ matrix.target }}
8+
runs-on: ubuntu-latest
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
include:
13+
- target: x86_64-apple-darwin
14+
archive: zip
15+
- target: x86_64-pc-windows-gnu
16+
archive: zip
17+
- target: x86_64-unknown-linux-musl
18+
archive: tar.gz
19+
steps:
20+
- uses: actions/checkout@v3
21+
- name: Compile and release
22+
uses: rust-build/[email protected]
23+
env:
24+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25+
with:
26+
RUSTTARGET: ${{ matrix.target }}
27+
ARCHIVE_TYPES: ${{ matrix.archive }}

0 commit comments

Comments
 (0)