Skip to content

Commit dae6a88

Browse files
chore: bump to 0.11.3
1 parent c573503 commit dae6a88

File tree

3 files changed

+20
-12
lines changed

3 files changed

+20
-12
lines changed

.github/workflows/cd.yml

+12-4
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,14 @@ jobs:
104104

105105
profile: minimal
106106
override: true
107+
108+
- name: Install musl for musl target
109+
if: ${{ matrix.target }} == x86_64-unknown-linux-musl
110+
shell: bash
111+
run: |
112+
sudo apt update
113+
sudo apt-get install -y musl musl-tools
114+
107115
- uses: Swatinem/rust-cache@v2
108116
- name: Cargo build
109117
uses: actions-rs/cargo@v1
@@ -144,7 +152,7 @@ jobs:
144152
145153
########## create tar.gz ##########
146154
147-
RELEASE_NAME=tv-${GITHUB_REF/refs\/tags\//}-${{ matrix.os-name }}-${{ matrix.architecture }}
155+
RELEASE_NAME=tv-${GITHUB_REF/refs\/tags\//}-${{ matrix.target }}
148156
echo "RELEASE_NAME=$RELEASE_NAME" >> "$GITHUB_ENV"
149157
150158
# create the directory for the archive
@@ -196,9 +204,9 @@ jobs:
196204
- target: x86_64-unknown-linux-gnu
197205
os: linux
198206
arch: x86_64
199-
- target: aarch64-unknown-linux-gnu
200-
os: linux
201-
arch: arm64
207+
# - target: aarch64-unknown-linux-gnu
208+
# os: linux
209+
# arch: arm64
202210

203211
env:
204212
# Emit backtraces on panics.

Cargo.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "television"
3-
version = "0.11.2"
3+
version = "0.11.3"
44
edition = "2021"
55
description = "A cross-platform, fast and extensible general purpose fuzzy finder TUI."
66
license = "MIT"

0 commit comments

Comments
 (0)