Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
1b70b8e487
2 changed files with 12 additions and 0 deletions
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
|
@ -27,6 +27,14 @@ jobs:
|
||||||
distribution: 'microsoft'
|
distribution: 'microsoft'
|
||||||
- name: make gradle wrapper executable
|
- name: make gradle wrapper executable
|
||||||
run: chmod +x ./gradlew
|
run: chmod +x ./gradlew
|
||||||
|
- uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.gradle/caches
|
||||||
|
~/.gradle/wrapper
|
||||||
|
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-gradle-
|
||||||
- name: build
|
- name: build
|
||||||
run: ./gradlew remapJar
|
run: ./gradlew remapJar
|
||||||
- name: capture build artifacts
|
- name: capture build artifacts
|
||||||
|
|
4
README.md
Normal file
4
README.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# rcc-server
|
||||||
|
[![build](https://github.com/ReconnectedCC/rcc-server/actions/workflows/build.yml/badge.svg)](https://github.com/ReconnectedCC/rcc-server/actions/workflows/build.yml)
|
||||||
|
|
||||||
|
Our custom server mod for ReconnectedCC
|
Loading…
Reference in a new issue