2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2026-04-08 16:10:26 +00:00

update to gradle (#66)

This commit is contained in:
mohammed Alteniji
2023-03-23 15:42:59 +04:00
committed by GitHub
parent 0f0f707ef7
commit b857bdb771
22 changed files with 624 additions and 455 deletions

View File

@@ -21,22 +21,22 @@ jobs:
with:
java-version: '11'
distribution: 'adopt'
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Build with gradle
run: ./gradlew shadowJar
- name: Upload Bungee
uses: actions/upload-artifact@v2.2.3
with:
# Artifact name
name: RedisBungee-Bungee
# Destination path
path: RedisBungee-Bungee/target/*
path: RedisBungee-Bungee/build/libs/*
- name: Upload Velocity
uses: actions/upload-artifact@v2.2.3
with:
name: RedisBungee-Velocity
path: RedisBungee-Velocity/target/*
path: RedisBungee-Velocity/build/libs/*
- name: Upload API
uses: actions/upload-artifact@v2.2.3
with:
name: RedisBungee-API
path: RedisBungee-API/target/*
path: RedisBungee-API/build/libs/*