移除Go代码和模块,修改克隆命令为dev分支 #137
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: clone仓库 | |
| on: | |
| push: | |
| branches: | |
| - master # 或者你想要触发工作流的分支名 | |
| schedule: | |
| - cron: '0 */1 * * *' # 每1小时运行 | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ macos-latest ] | |
| steps: | |
| - name: 检出代码 | |
| uses: actions/checkout@v6 | |
| - name: 克隆HyperDbg仓库 | |
| run: git clone --recursive -b dev https://github.com/HyperDbg/HyperDbg.git | |
| - name: 打包HyperDbg项目 | |
| run: tar -czvf HyperDbg.tar.gz HyperDbg | |
| - name: 上传打包文件 | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: HyperDbg-tar-gz | |
| path: HyperDbg.tar.gz |