Skip to content

Commit

Permalink
Change archive name, and logger level
Browse files Browse the repository at this point in the history
  • Loading branch information
wangeguo committed Oct 10, 2023
1 parent 45f9065 commit 2588c9f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,28 @@ jobs:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
platform: linux-amd64
- os: ubuntu-latest
target: aarch64-unknown-linux-gnu
platform: linux-arm64
- os: macos-latest
target: x86_64-apple-darwin
platform: darwin-amd64
- os: macos-latest
target: aarch64-apple-darwin
platform: darwin-arm64
- os: windows-latest
target: x86_64-pc-windows-msvc
platform: windows-amd64
# - os: windows-latest
# target: aarch64-pc-windows-msvc
# platform: windows-arm64
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@cross
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: amp
archive: $bin-$tag-$target
archive: $bin-${{ matrix.platform }}
target: ${{ matrix.target }}
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "amp"
description = "Amphitheatre's official command line tool"
version = "0.2.26"
version = "0.2.27"
edition = "2021"
license = "Apache-2.0"
homepage = "https://amphitheatre.app"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ use crate::cmd::cli::Cli;
#[tokio::main]
async fn main() -> Result<()> {
let filter = EnvFilter::builder()
.with_default_directive(LevelFilter::DEBUG.into())
.with_default_directive(LevelFilter::INFO.into())
.from_env_lossy();
tracing_subscriber::fmt()
.without_time()
Expand Down

0 comments on commit 2588c9f

Please sign in to comment.