We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7027b81 commit 9f79822Copy full SHA for 9f79822
.github/workflows/build-and-publish.yml
@@ -63,12 +63,14 @@ jobs:
63
distribution: temurin
64
- name: Setup Gradle
65
uses: gradle/actions/setup-gradle@v4
66
- - name: Build and publish
67
- run: ./gradlew clean build -Pskip_nms=true publish
+ - name: Build this shit again
+ run: ./gradlew clean build
68
- name: Upload to the release
69
env:
70
GH_TOKEN: ${{ github.token }}
71
run: |
72
for file in */build/libs/*.jar; do
73
gh release upload ${{ github.event.release.tag_name }} $file
74
done
75
+ - name: Clean, Build and Publish
76
+ run: ./gradle -Pskip_nms=true publish clean build publish
0 commit comments