forked from CloudburstMC/Nukkit
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e2aacd7
commit 4ea121a
Showing
32 changed files
with
12,469 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: SetupJDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 8 | ||
distribution: temurin | ||
cache: maven | ||
- name: Install dependencies | ||
run: | | ||
git clone --no-tags --depth 1 https://github.com/EaseCation/Network.git target/Network | ||
cd target/Network | ||
mvn -B clean install | ||
- name: Build | ||
run: mvn -B clean package | ||
- name: Archive artifacts | ||
uses: actions/upload-artifact@v4 | ||
if: success() | ||
with: | ||
name: Nukkit | ||
path: target/nukkit-1.0-SNAPSHOT.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.