Skip to content

Commit 15314aa

Browse files
committed
chore: update release
1 parent ebd139b commit 15314aa

File tree

3 files changed

+17
-236
lines changed

3 files changed

+17
-236
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -196,23 +196,6 @@ jobs:
196196
asset_name: ci-macos-aarch64
197197
asset_content_type: application/octet-stream
198198

199-
- name: Update README with release info
200-
run: |
201-
chmod +x update-readme.sh
202-
./update-readme.sh
203-
204-
- name: Commit README changes
205-
run: |
206-
git config --local user.email "action@github.com"
207-
git config --local user.name "GitHub Action"
208-
git add README.md
209-
if git diff --staged --quiet; then
210-
echo "No changes to commit"
211-
else
212-
git commit -m "docs: Update README with release ${{ steps.vars.outputs.package_version }} info 🤖"
213-
git push
214-
fi
215-
216199
- name: Purge artifacts
217200
uses: omarabid-forks/purge-artifacts@v1
218201
with:

README.md

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@
1010
[![Tests](https://github.com/CodeInputCorp/cli/actions/workflows/tests.yml/badge.svg)](https://github.com/CodeInputCorp/cli/actions/workflows/tests.yml)
1111
[![Build](https://github.com/CodeInputCorp/cli/actions/workflows/build.yml/badge.svg)](https://github.com/CodeInputCorp/cli/actions/workflows/build.yml)
1212

13-
`codeinput` is a powerful CLI tool for parsing, analyzing, and managing CODEOWNERS files across your repositories. It provides advanced querying capabilities, ownership analysis, and tag-based file organization.
13+
`codeinput` is a CLI tool for parsing, analyzing, and managing CODEOWNERS files across your repository. It provides advanced querying capabilities, ownership analysis, and tag-based file organization.
1414

1515
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
1616
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
17+
1718
**Table of Contents**
1819

1920
- [Features](#features)
20-
- [CodeOwners](#codeowners)
21+
- [CodeOwners](#codeowners-features)
2122
- [Installation](#installation)
2223
- [Pre-built Binaries](#pre-built-binaries)
2324
- [Installation Instructions](#installation-instructions)
24-
- [What's New in 0.0.1-beta](#whats-new-in-001-beta)
2525
- [From Cargo](#from-cargo)
2626
- [From Source](#from-source)
2727
- [Quick Start](#quick-start)
@@ -44,7 +44,7 @@
4444

4545
## Features
4646

47-
### CodeOwners
47+
### CodeOwners Features
4848

4949
- **Advanced Parsing**: Parse CODEOWNERS files recursively across directory structures
5050
- **Ownership Analysis**: Analyze file ownership patterns and generate detailed reports
@@ -56,15 +56,16 @@
5656
## Installation
5757

5858
<!-- RELEASE_INFO_START -->
59+
5960
### Pre-built Binaries
6061

61-
**Latest Release: `0.0.1-beta`**
62+
**Latest Release: `0.0.4`**
6263

63-
- **Linux x86_64**: [Download](https://github.com/CodeInputCorp/cli/releases/download/0.0.1-beta/ci-linux-x86_64)
64-
- **Linux ARM64**: [Download](https://github.com/CodeInputCorp/cli/releases/download/0.0.1-beta/ci-linux-aarch64)
65-
- **Windows x86_64**: [Download](https://github.com/CodeInputCorp/cli/releases/download/0.0.1-beta/ci-windows-x86_64.exe)
66-
- **macOS Intel**: [Download](https://github.com/CodeInputCorp/cli/releases/download/0.0.1-beta/ci-macos-x86_64)
67-
- **macOS Apple Silicon**: [Download](https://github.com/CodeInputCorp/cli/releases/download/0.0.1-beta/ci-macos-aarch64)
64+
- **Linux x86_64**: [Download](https://github.com/CodeInputCorp/cli/releases/download/v0.0.4/ci-linux-x86_64)
65+
- **Linux ARM64**: [Download](https://github.com/CodeInputCorp/cli/releases/download/v0.0.4/ci-linux-aarch64)
66+
- **Windows x86_64**: [Download](https://github.com/CodeInputCorp/cli/releases/download/v0.0.4/ci-windows-x86_64.exe)
67+
- **macOS Intel**: [Download](https://github.com/CodeInputCorp/cli/releases/download/v0.0.4/ci-macos-x86_64)
68+
- **macOS Apple Silicon**: [Download](https://github.com/CodeInputCorp/cli/releases/download/v0.0.4/ci-macos-aarch64)
6869

6970
#### Installation Instructions
7071

@@ -73,9 +74,6 @@
7374
3. Move the binary to your PATH: `mv ci /usr/local/bin/` (Linux/macOS)
7475
4. Make it executable: `chmod +x /usr/local/bin/ci` (Linux/macOS)
7576

76-
#### What's New in 0.0.1-beta
77-
78-
codeinput - 0.0.1-beta
7977
<!-- RELEASE_INFO_END -->
8078

8179
### From Cargo
@@ -95,6 +93,12 @@ cargo build --release --bin ci
9593
sudo cp target/release/ci /usr/local/bin/
9694
```
9795

96+
### From NPM
97+
98+
```bash
99+
npm install -g @codeinput/codeinput
100+
```
101+
98102
## Quick Start
99103

100104
1. **Parse your CODEOWNERS files** to build the cache:

update-readme.sh

Lines changed: 0 additions & 206 deletions
This file was deleted.

0 commit comments

Comments
 (0)