feat: 添加 mine:install 命令及扩展自动安装配置 #1943
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Docker | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: docker:latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Build | |
| run: | | |
| cp .github/ci/.env.example .env | |
| docker build -t hyperf . | |
| - name: docker-compose | |
| run: | | |
| docker-compose up -d |