From 8b1f3afa9d0f2e6116000d7d53d3ae44ce4bd2ae Mon Sep 17 00:00:00 2001 From: Derek Cormier Date: Tue, 2 Sep 2025 11:29:16 -0700 Subject: [PATCH] chore: prepare for releases --- .github/workflows/release.yaml | 13 +++++++++++++ Cargo.toml | 5 +++++ 2 files changed, 18 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..b7a4580 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,13 @@ +name: release +on: + push: + tags: + - v*.*.* +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: softprops/action-gh-release@v2 + with: + generate_release_notes: true diff --git a/Cargo.toml b/Cargo.toml index b19f6e8..be2c7a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,12 @@ [package] name = "logcap" +description = "A library for capturing log output." version = "0.1.0" edition = "2021" +keywords = ["log", "capture"] +homepage = "https://github.com/kormide/logcap" +repository = "https://github.com/kormide/logcap" +license-file = "LICENSE" [dependencies] log = "0.4.0"