修正macos持续集成运行目录 (#2234)

修改 macos 最后一步运行目录release/linux/Debug/ 改为release/darwin/Debug/ 
参看build log  
https://github.com/ZLMediaKit/ZLMediaKit/actions/runs/4150150582/jobs/7179611556
This commit is contained in:
zx 2023-02-12 22:44:37 +08:00 committed by GitHub
parent 2f090e33cf
commit 719b137208
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,6 +34,6 @@ jobs:
run: mkdir -p build && cd build && cmake .. && make -j $(nproc)
- name: 运行MediaServer
run: pwd && cd release/linux/Debug && sudo ./MediaServer -d &
run: pwd && cd release/darwin/Debug && sudo ./MediaServer -d &