From cd944c662b5a29e26694f8f75167bf2a12091b66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Wed, 11 Sep 2024 12:04:53 +0300 Subject: [PATCH] fix(release): fix the release assets --- .github/workflows/cd.yml | 2 +- Cargo.toml | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 5fe8799..44c6213 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -30,7 +30,7 @@ jobs: - name: Prepare release assets run: | mkdir -p release - cp {LICENSE,README.md,CHANGELOG.md} release/ + cp {LICENSE-MIT,LICENSE-APACHE,README.md,CHANGELOG.md} release/ cp target/${{ matrix.TARGET }}/release/binsider release/ && strip -s release/binsider mv release/ binsider-${{env.RELEASE_VERSION}}/ diff --git a/Cargo.toml b/Cargo.toml index f3a9e2f..c24a13c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,6 +11,13 @@ keywords = ["analyze", "binary", "tui", "elf"] categories = ["command-line-utilities"] edition = "2021" rust-version = "1.74.1" +include = [ + "src/**/*", + "Cargo.*", + "LICENSE*", + "README.md", + "CHANGELOG.md", +] [dependencies] ratatui = "0.28.1"