Skip to content

Commit 6036890

Browse files
committed
chore: add release action and bump version to 0.1.2
1 parent 1c06ed5 commit 6036890

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.github/workflows/release.yml

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package-dir = { "" = "src" }
77

88
[project]
99
name = "tokdu"
10-
version = "0.1.1"
10+
version = "0.1.2"
1111
description = "A token counting TUI tool that respects .gitignore and skips binary files"
1212
readme = "README.md"
1313
authors = [

0 commit comments

Comments
 (0)