Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…nto mcp
  • Loading branch information
SpoilerRules committed Jan 21, 2024
2 parents 2ef7ab0 + bf048db commit 3bf9926
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build.yml
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

0 comments on commit 3bf9926

Please sign in to comment.