File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed
Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 1+ name : build
2+
3+ on : [pull_request, push]
4+
5+ jobs :
6+ build :
7+ runs-on : windows-2022
8+ steps :
9+ - name : checkout repository
10+ uses : actions/checkout@v3
11+ - name : validate gradle wrapper
12+ uses : gradle/wrapper-validation-action@v1
13+ - name : setup jdk 17
14+ uses : actions/setup-java@v3
15+ with :
16+ java-version : 17
17+ distribution : ' microsoft'
18+ - name : make gradle wrapper executable
19+ run : chmod +x ./gradlew
20+ - name : build
21+ run : ./gradlew build
22+ - name : capture build artifacts
23+ uses : actions/upload-artifact@v3
24+ with :
25+ name : Artifacts
26+ path : build/libs/
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ loom.platform=forge
1212 yarn_mappings =1.16.5+build.10
1313
1414# Mod Properties
15- mod_version =1.0.0-1.16.x
15+ mod_version =1.0.0
1616 maven_group =org.thinkingstudio.dels
1717 archives_base_name =DisableEarlyLoadingScreen
1818 mod_id =dels
You can’t perform that action at this time.
0 commit comments