File tree Expand file tree Collapse file tree 1 file changed +1
-24
lines changed Expand file tree Collapse file tree 1 file changed +1
-24
lines changed Original file line number Diff line number Diff line change @@ -27,33 +27,10 @@ jobs:
27
27
run : chmod +x ./gradlew
28
28
29
29
- name : Build with Gradle
30
- run : ./gradlew clean fatJar nativeCompile
30
+ run : ./gradlew clean fatJar
31
31
32
32
- name : Publish Jar to GitHub Packages
33
33
uses : actions/upload-artifact@v4
34
34
with :
35
35
name : codeanalyzer.jar
36
36
path : build/libs/*.jar
37
-
38
- # If you want to create a release instead of uploading to GitHub Packages
39
- - name : Create Release
40
- id : create_release
41
- uses : actions/create-release@v1
42
- env :
43
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
44
- with :
45
- tag_name : ${{ github.run_number }}
46
- release_name : Release ${{ github.run_number }}
47
- draft : false
48
- prerelease : false
49
-
50
- - name : Upload Release Asset
51
- uses : softprops/action-gh-release@v2
52
- env :
53
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
54
- with :
55
- upload_url : ${{ steps.create_release.outputs.upload_url }}
56
- asset_path : ./build/libs/codeanalyzer.jar
57
- asset_name : codeanalyzer.jar
58
- asset_content_type : application/java-archive
59
-
You can’t perform that action at this time.
0 commit comments