Skip to content

Commit 2e4fd4e

Browse files
authored
chore: prepare for releases (#2)
1 parent e9247ee commit 2e4fd4e

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/release.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: release
2+
on:
3+
push:
4+
tags:
5+
- v*.*.*
6+
jobs:
7+
release:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: softprops/action-gh-release@v2
12+
with:
13+
generate_release_notes: true

Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
[package]
22
name = "logcap"
3+
description = "A library for capturing log output."
34
version = "0.1.0"
45
edition = "2021"
6+
keywords = ["log", "capture"]
7+
homepage = "https://github.com/kormide/logcap"
8+
repository = "https://github.com/kormide/logcap"
9+
license-file = "LICENSE"
510

611
[dependencies]
712
log = "0.4.0"

0 commit comments

Comments
 (0)