We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6e35a2 commit acd29f0Copy full SHA for acd29f0
1 file changed
.github/workflows/clone.yml
@@ -26,8 +26,15 @@ jobs:
26
- name: 打包HyperDbg项目
27
run: tar --zstd -cvf HyperDbg.tar.zst HyperDbg
28
29
- - name: 上传打包文件
30
- uses: actions/upload-artifact@v6
+ - name: 发布到GitHub Releases
+ uses: softprops/action-gh-release@v2
31
with:
32
- name: HyperDbg-tar-zst
33
- path: HyperDbg.tar.zst
+ name: HyperDbg-dev-branch
+ tag_name: latest
34
+ files: HyperDbg.tar.zst
35
+ body: |
36
+ HyperDbg dev 分支克隆包
37
+ 更新时间: ${{ github.event.head_commit.timestamp }}
38
+ prerelease: true
39
+ env:
40
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments