Skip to content

Commit

Permalink
fix(release): fix the release assets
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Sep 11, 2024
1 parent fab2906 commit cd944c6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}/
Expand Down
7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit cd944c6

Please sign in to comment.