Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
inhere committed Aug 12, 2020
1 parent 24790ca commit 6dfe2cf
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Unit-tests

on: [push]
on:
push:
paths:
- '**.php'
- 'composer.json'
- '**.yml'

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ jobs:
gzip: false
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ env.RELEASE_TAG }}
name: ${{ env.RELEASE_NAME }}
name: ${{ env.RELEASE_TAG }}
files: kite-${{ env.RELEASE_TAG }}.phar
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ My person CLI tool package.
curl https://raw.githubusercontent.com/inhere/kite/master/install.sh | bash
```

### Manual install
### Manual clone

```bash
cd ~
Expand All @@ -33,6 +33,18 @@ chmod a+x bin/kite
ln -s $PWD/bin/kite /usr/local/bin/kite
```

### Download phar

- release page: https://github.com/inhere/kite/releases

eg:

```bash
wget -c https://github.com/inhere/kite/releases/download/v1.0.4/kite-v1.0.5.phar
mv kite-v1.0.5.phar /usr/local/bin/kite
chmod a+x /usr/local/bin/kite
```

## Usage

### All commands
Expand Down
10 changes: 9 additions & 1 deletion README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,15 @@ chmod a+x bin/kite

### 下载PHAR

- https://github.com/inhere/kite/releases
- release page: https://github.com/inhere/kite/releases

eg:

```bash
wget -c https://github.com/inhere/kite/releases/download/v1.0.4/kite-v1.0.5.phar
mv kite-v1.0.5.phar /usr/local/bin/kite
chmod a+x /usr/local/bin/kite
```

## 使用帮助

Expand Down

0 comments on commit 6dfe2cf

Please sign in to comment.