diff --git a/.github/workflows/linux_pr.yaml b/.github/workflows/linux_pr.yaml index daa38f5..d706efb 100644 --- a/.github/workflows/linux_pr.yaml +++ b/.github/workflows/linux_pr.yaml @@ -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 diff --git a/.github/workflows/macos_pr.yaml b/.github/workflows/macos_pr.yaml index a925392..b31e61b 100644 --- a/.github/workflows/macos_pr.yaml +++ b/.github/workflows/macos_pr.yaml @@ -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 diff --git a/README-CN.md b/README-CN.md index 13a4086..8bf4a61 100644 --- a/README-CN.md +++ b/README-CN.md @@ -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 骨架创建。 ### 使用 @@ -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 路径中 @@ -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 diff --git a/README.md b/README.md index 3c372b6..e9fdfca 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/app/Box.php b/src/app/Box.php index d788aef..390a0bd 100644 --- a/src/app/Box.php +++ b/src/app/Box.php @@ -13,5 +13,5 @@ class Box { - public const VERSION = '0.0.5'; + public const VERSION = '0.0.8'; }