File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ # This is a basic workflow to help you get started with Actions
2+
3+ name : Release artifact
4+
5+ # Controls when the workflow will run
6+ on : release
7+
8+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
9+ jobs :
10+ # This workflow contains a single job called "build"
11+ build :
12+ # The type of runner that the job will run on
13+ runs-on : ubuntu-latest
14+
15+ # Steps represent a sequence of tasks that will be executed as part of the job
16+ steps :
17+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
18+ - uses : actions/checkout@v2
19+
20+ # Runs a single command using the runners shell
21+ - name : Maven Build
22+ run : mvn package -Dmdep.skip
23+ - name : Upload to release
24+ uses : JasonEtco/upload-to-release@master
25+ with :
26+ args : target/AdiAuth*.jar
27+ env :
28+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments