Skip to content

Commit

Permalink
action
Browse files Browse the repository at this point in the history
  • Loading branch information
TexBlock authored Feb 2, 2023
1 parent 564d0ac commit fcae978
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: build

on: [pull_request, push]

jobs:
build:
runs-on: windows-2022
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: validate gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: setup jdk 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'microsoft'
- name: make gradle wrapper executable
run: chmod +x ./gradlew
- name: build
run: ./gradlew build
- name: capture build artifacts
uses: actions/upload-artifact@v3
with:
name: Artifacts
path: build/libs/
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ loom.platform=forge
yarn_mappings=1.16.5+build.10

# Mod Properties
mod_version=1.0.0-1.16.x
mod_version=1.0.0
maven_group=org.thinkingstudio.dels
archives_base_name=DisableEarlyLoadingScreen
mod_id=dels
Expand Down

0 comments on commit fcae978

Please sign in to comment.