mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-02 14:25:38 +08:00
Signal handling fixes: - SignalListener: add SIGHUP/SIGTERM handling for both Swoole and Workerman drivers in master and worker processes - Prevent 100% CPU when IDE terminal is closed by ensuring graceful shutdown on terminal hangup PHP version support: - Widen PHP constraint to 8.3, 8.4, 8.5 - Bump doctrine/dbal from ^2.13.1 to ^4.4 - Bump php-cs-fixer to ^3.64, phpstan to ^1.12 - Bump swoole/ide-helper to ^5.0 - Drop phpunit ^8.5 (EOL), keep ^9.0 CI updates: - actions/checkout@v3 → @v4 (Node.js 20 deprecated) - Bump static analysis/code style PHP from 8.1 to 8.3
63 lines
1.5 KiB
YAML
63 lines
1.5 KiB
YAML
name: Build Release Artifacts
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- published
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-release-artifacts:
|
|
name: Build Release Artifacts
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.base_ref }}
|
|
|
|
- name: Setup PHP
|
|
uses: sunxyw/workflows/setup-environment@main
|
|
with:
|
|
php-version: 8.3
|
|
php-extensions: swoole, posix, json
|
|
operating-system: ubuntu-latest
|
|
use-cache: true
|
|
|
|
- name: Remove Dev Dependencies
|
|
run: composer install --no-dev
|
|
|
|
- name: Build Phar
|
|
run: ./zhamao build
|
|
|
|
- name: Upload Release Asset
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
files: build/zm.phar
|
|
|
|
update-changelog:
|
|
name: Update Changelog
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.base_ref }}
|
|
|
|
- name: Setup PHP
|
|
uses: sunxyw/workflows/setup-environment@main
|
|
with:
|
|
php-version: 8.3
|
|
php-extensions: swoole, posix, json
|
|
operating-system: ubuntu-latest
|
|
use-cache: true
|
|
|
|
- name: Update Changelog
|
|
run: ./zhamao generate:text update-log-md
|
|
|
|
- name: Commit Changelog
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: update changelog
|
|
branch: ${{ github.event.release.target_commitish }}
|