mirror of
https://github.com/alexpasmantier/television.git
synced 2025-06-06 03:25:23 +00:00
chore: bump to 0.11.2
This commit is contained in:
parent
05e3ba3b75
commit
918dc6686d
14
.github/workflows/cd.yml
vendored
14
.github/workflows/cd.yml
vendored
@ -228,10 +228,10 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
rustup target add ${{ matrix.target }}
|
rustup target add ${{ matrix.target }}
|
||||||
|
|
||||||
- name: Install cargo-deb
|
- name: Install cargo-deb and cross
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
cargo install cargo-deb
|
cargo install cargo-deb cross
|
||||||
|
|
||||||
- name: Create deployment directory
|
- name: Create deployment directory
|
||||||
shell: bash
|
shell: bash
|
||||||
@ -245,11 +245,6 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cp man/tv.1 "$DEPLOY_DIR/"
|
cp man/tv.1 "$DEPLOY_DIR/"
|
||||||
|
|
||||||
- name: Check dependencies
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
cargo tree --target ${{ matrix.target }} --no-dedupe
|
|
||||||
|
|
||||||
- name: Build release binary
|
- name: Build release binary
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
@ -261,7 +256,10 @@ jobs:
|
|||||||
# if aarch64, we need to install the cross compiler since we're running x86_64
|
# if aarch64, we need to install the cross compiler since we're running x86_64
|
||||||
if [[ ${{ matrix.target }} == aarch64-unknown-linux-gnu ]]; then
|
if [[ ${{ matrix.target }} == aarch64-unknown-linux-gnu ]]; then
|
||||||
sudo apt-get install -y --no-install-recommends gcc-aarch64-linux-gnu
|
sudo apt-get install -y --no-install-recommends gcc-aarch64-linux-gnu
|
||||||
cargo deb --profile deb --target ${{ matrix.target }} -o "$DEB_DIR/$DEB_NAME" -- --no-default-features --features zero-copy,simd,fancy
|
|
||||||
|
cargo deb --profile deb --target ${{ matrix.target }} -o "$DEB_DIR/$DEB_NAME" \
|
||||||
|
--cargo-build cross
|
||||||
|
-- --no-default-features --features zero-copy,simd,fancy
|
||||||
else
|
else
|
||||||
cargo deb --profile deb --target ${{ matrix.target }} -o "$DEB_DIR/$DEB_NAME"
|
cargo deb --profile deb --target ${{ matrix.target }} -o "$DEB_DIR/$DEB_NAME"
|
||||||
fi
|
fi
|
||||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -2209,7 +2209,7 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "television"
|
name = "television"
|
||||||
version = "0.11.1"
|
version = "0.11.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"base64",
|
"base64",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "television"
|
name = "television"
|
||||||
version = "0.11.1"
|
version = "0.11.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "A cross-platform, fast and extensible general purpose fuzzy finder TUI."
|
description = "A cross-platform, fast and extensible general purpose fuzzy finder TUI."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user