fix> update ci

Signed-off-by: moonleay <contact@moonleay.net>
This commit is contained in:
moonleay 2023-08-05 19:04:47 +02:00
parent 149ce7d5c6
commit c4233a7b6b

View file

@ -5,12 +5,17 @@ jobs:
container: container:
image: gradle image: gradle
steps: steps:
- name: Checkout steps:
uses: actions/checkout@v2 - name: Checkout code
- name: Clean Caches uses: actions/checkout@v2
run: | - name: Build and Package JAR with Gradle
rm -f .gradle/caches/modules-2/modules-2.lock uses: docker://gradle:latest # Use the official Gradle Docker image
rm -fr .gradle/caches/*/plugin-resolution/ with:
args: shadowJar
- name: Clean Caches
run: |
rm -f .gradle/caches/modules-2/modules-2.lock
rm -fr .gradle/caches/*/plugin-resolution/
- name: Run shadowJar - name: Run shadowJar
run: gradle shadowJar run: gradle shadowJar
- name: Run publish - name: Run publish