2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2024-09-19 23:28:00 +00:00
RedisBungee/.github/workflows/gradle.yml

43 lines
1.0 KiB
YAML
Raw Normal View History

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: RedisBungee Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2023-09-10 18:05:33 +00:00
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
2023-09-10 18:05:33 +00:00
java-version: '17'
distribution: 'adopt'
2023-03-23 11:42:59 +00:00
- name: Build with gradle
run: ./gradlew shadowJar
2022-07-19 00:30:39 +00:00
- name: Upload Bungee
uses: actions/upload-artifact@v2.2.3
with:
# Artifact name
2022-07-15 06:13:08 +00:00
name: RedisBungee-Bungee
# Destination path
2024-05-12 21:56:38 +00:00
path: proxies/bungeecord/build/libs/*
2022-07-19 00:30:39 +00:00
- name: Upload Velocity
uses: actions/upload-artifact@v2.2.3
with:
name: RedisBungee-Velocity
2024-05-12 21:56:38 +00:00
path: proxies/velocity/build/libs/*
2022-07-19 00:30:39 +00:00
- name: Upload API
uses: actions/upload-artifact@v2.2.3
with:
name: RedisBungee-API
2024-05-12 21:56:38 +00:00
path: api/build/libs/*