-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'mcp' of https://github.com/SpoilerRules/KotlinizedMCP i…
…nto mcp
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 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,34 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches: [ mcp ] | ||
pull_request: | ||
branches: [ mcp ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository and submodules | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Setting up JDK 21 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: oracle | ||
java-version: 21 | ||
|
||
- name: Grant permissions to Gradlew | ||
run: sudo chmod +x ./gradlew | ||
|
||
- name: Setup and build | ||
run: ./gradlew build | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Evanescent | ||
path: build/libs/Evanescent.jar |