How to release a build artifact asset on GitHub with a script?

后端 未结 7 2085
半阙折子戏
半阙折子戏 2020-12-01 06:38

I am trying to figure out a one-command process for generating a build on GitHub.

What I anticipate doing is running some sort of command- make release, say, and the

7条回答
  •  Happy的楠姐
    2020-12-01 06:59

    If you use Maven, you can add GitHub's Downloads Maven Plugin ( https://github.com/github/maven-plugins/#downloads-plugin ) and simply do:

    $ mvn clean install ghDownloads:upload
    

提交回复
热议问题