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 39469e6 commit f578e2b
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 25 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-apiserver,amp-controllers,amp-crdgen,amp-syncer
archive: amphitheatre-$tag-$target
archive: amphitheatre-${{ matrix.platform }}
target: ${{ matrix.target }}
token: ${{ secrets.GITHUB_TOKEN }}
42 changes: 21 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.5.5"
version = "0.5.6"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/amphitheatre-app/amphitheatre"
Expand Down
2 changes: 1 addition & 1 deletion apiserver/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use tracing_subscriber::EnvFilter;
#[tokio::main]
async fn main() -> anyhow::Result<()> {
let filter = EnvFilter::builder()
.with_default_directive(LevelFilter::TRACE.into())
.with_default_directive(LevelFilter::INFO.into())
.from_env_lossy();
tracing_subscriber::fmt().with_env_filter(filter).init();

Expand Down
2 changes: 1 addition & 1 deletion syncer/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ mod handle;
#[tokio::main]
async fn main() -> Result<(), async_nats::Error> {
let filter = EnvFilter::builder()
.with_default_directive(LevelFilter::TRACE.into())
.with_default_directive(LevelFilter::INFO.into())
.from_env_lossy();
tracing_subscriber::fmt().with_env_filter(filter).init();

Expand Down

0 comments on commit f578e2b

Please sign in to comment.