Skip to content

Commit fcae978

Browse files
authored
action
1 parent 564d0ac commit fcae978

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.github/workflows/build.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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/

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)