Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterDing committed Dec 15, 2023
1 parent 2823928 commit 2b8e095
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: release
name: Release

# Only do the release on x.y.z tags.
on:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ actix-rt = "2.9"
# for http
http = "1.0"
url = "2.5"
reqwest = { version = "0.11", features = ["default", "stream", "gzip", "brotli", "deflate"] }
reqwest = { version = "0.11", features = ["rustls-tls", "stream", "gzip", "brotli", "deflate"], default-features = false }

# for errors
thiserror = "1.0"
Expand Down
5 changes: 0 additions & 5 deletions ci/before_install.bash
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
#!/usr/bin/env bash

set -ex

echo "-: before_install.bash"

if ! command -V sudo; then
apt-get update
apt-get install -y --no-install-recommends sudo
Expand All @@ -14,5 +10,4 @@ sudo apt-get install -y --no-install-recommends \
build-essential openssl libssl-dev pkg-config

# needed to build deb packages
echo "-: sudo apt-get install -y fakeroot"
sudo apt-get install -y --no-install-recommends fakeroot

0 comments on commit 2b8e095

Please sign in to comment.