-
Notifications
You must be signed in to change notification settings - Fork 6
32 lines (30 loc) · 826 Bytes
/
Copy pathgradle.yml
File metadata and controls
32 lines (30 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: AdvancedSensitiveWords CI
on:
push:
pull_request:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 25
cache: gradle
- name: Make Gradle wrapper executable
run: chmod +x ./gradlew
- name: Build
run: ./gradlew build --no-daemon
- name: Upload Paper Artifact
uses: actions/upload-artifact@v7
with:
path: ./paper/build/libs/AdvancedSensitiveWords-paper.jar
archive: false
- name: Upload Velocity Artifact
uses: actions/upload-artifact@v7
with:
path: ./velocity/build/libs/AdvancedSensitiveWords-velocity.jar
archive: false