Skip to content

Commit

Permalink
Merge pull request #29 from hyperf/release-v0.0.8
Browse files Browse the repository at this point in the history
Release v0.0.8
  • Loading branch information
huangzhhui authored Oct 2, 2022
2 parents 5c592a0 + 1c5c661 commit 0e72b33
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
if: steps.box.outcome == 'success'
uses: actions/upload-artifact@v3
with:
name: box_${{ matrix.arch }}
name: box_${{ matrix.arch }}_linux
path: |
box
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
if: steps.box.outcome == 'success'
uses: actions/upload-artifact@v3
with:
name: box_${{ matrix.arch }}
name: box_${{ matrix.arch }}_macos
path: |
box
Expand Down
8 changes: 5 additions & 3 deletions README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Box 致力于帮助提升 Hyperf 应用程序的编程体验,管理 PHP 环境
您可以从该项目的 Github Actions 附件中下载最新构建的 `box` 二进制文件。
点击 [这里](https://github.com/hyperf/box/actions) 下载 ~

请注意 box **仅支持Swow**, 暂 **不支持** Swoole,故你的项目骨架应由 [hyperf/swow-skeleton](https://github.com/hyperf/swow-skeleton) 项目创建或其它 Swow 骨架创建。
请注意 box **仅支持 Swow**, 暂 **不支持** Swoole,故你的项目骨架应由 [hyperf/swow-skeleton](https://github.com/hyperf/swow-skeleton) 项目创建或其它 Swow 骨架创建。

### 使用

Expand All @@ -18,7 +18,7 @@ Box 致力于帮助提升 Hyperf 应用程序的编程体验,管理 PHP 环境
##### Mac

```bash
wget https://github.com/hyperf/box/releases/download/v0.0.4/box_x86_64_macos -O box
wget https://github.com/hyperf/box/releases/download/v0.0.8/box_x86_64_macos -O box
sudo mv ./box /usr/local/bin/box
sudo chmod 755 /usr/local/bin/box
// 确保 /usr/local/bin/box 在你的 $PATH 环境中,或者将 `box` 放到你想要的任意 $PATH 路径中
Expand All @@ -27,13 +27,15 @@ sudo chmod 755 /usr/local/bin/box
##### Linux x86_64

```bash
wget https://github.com/hyperf/box/releases/download/v0.0.4/box_x86_64_linux -O box
wget https://github.com/hyperf/box/releases/download/v0.0.8/box_x86_64_linux -O box
sudo mv ./box /usr/local/bin/box
sudo chmod 755 /usr/local/bin/box
// 确保 /usr/local/bin/box 在你的 $PATH 环境中,或者将 `box` 放到你想要的任意 $PATH 路径中
```
##### Linux aarch64

目前我们缺少 ARRCH64 Github Actions Runner,所以无法及时构建 ARRCH64 版本的 bin 文件。

```bash
wget https://github.com/hyperf/box/releases/download/v0.0.3/box_php8.1_aarch64_linux -O box
sudo mv ./box /usr/local/bin/box
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ sudo chmod 755 /usr/local/bin/box
// Make sure /usr/local/bin/box in your $PATH env, or put `box` into any path in $PATH env that you want
```
##### Linux aarch64

At present, we are short of ARRCH64 Github Actions Runner, so we cannot timely construct the bin file of ARRCH64 version.

```bash
wget https://github.com/hyperf/box/releases/download/v0.0.3/box_php8.1_aarch64_linux -O box
sudo mv ./box /usr/local/bin/box
Expand Down
2 changes: 1 addition & 1 deletion src/app/Box.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@

class Box
{
public const VERSION = '0.0.5';
public const VERSION = '0.0.8';
}

0 comments on commit 0e72b33

Please sign in to comment.