forked from OKTW-Network/FabricProxy
-
Notifications
You must be signed in to change notification settings - Fork 7
39 lines (33 loc) · 861 Bytes
/
workflow.yml
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
33
34
35
36
37
38
39
name: FabricProxy Actions
on: [push, pull_request]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Validation
uses: gradle/wrapper-validation-action@v2
- name: JDK 17
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "17"
- name: cache
uses: actions/cache@v4
with:
path: |
~/.gradle
.gradle/loom-cache
key: caches-${{ hashFiles('~/.gradle', '.gradle/loom-cache') }}
restore-keys: |
caches-
- name: Build
run: ./gradlew build
- name: Upload-Artifact
uses: actions/upload-artifact@master
with:
name: Artifact
path: build/libs