Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerS1066 committed Jul 4, 2024
1 parent ccefefe commit a8a5267
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 42 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Java CI

on:
workflow_dispatch:
push:
pull_request:

jobs:
# Build Movecraft-CoreProtect
build:
runs-on: ubuntu-latest
permissions:
contents: read

steps:
- name: Checkout Movecraft-CoreProtect
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
build-scan-publish: true
build-scan-terms-of-use-url: "https://gradle.com/terms-of-service"
build-scan-terms-of-use-agree: "yes"

- name: Build with Gradle
run: ./gradlew clean build --parallel

- name: Stage jar
run: mkdir staging && cp build/libs/Movecraft-CoreProtect.jar staging && mv staging/Movecraft-CoreProtect.jar staging/Movecraft-CoreProtect_$GITHUB_SHA.jar
- name: Upload jar
uses: actions/upload-artifact@v4
with:
name: Movecraft-CoreProtect_Dev-Build
path: staging/Movecraft-CoreProtect_*.jar
42 changes: 0 additions & 42 deletions .github/workflows/maven.yml

This file was deleted.

0 comments on commit a8a5267

Please sign in to comment.