Skip to content

Commit

Permalink
Switch over CI
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerS1066 committed Jul 6, 2024
1 parent db6d688 commit 8b4d7ae
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 40 deletions.
64 changes: 64 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: Gradle CI

on:
workflow_dispatch:
push:
pull_request:
release:
types: [created, prereleased]

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write

steps:
- name: Checkout Movecraft-ShipRules
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: Publish to GitHub Packages
if: ${{ github.event_name == 'release' }}
run: ./gradlew publish --parallel
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Publish to PaperMC Hangar
if: ${{ github.event_name == 'release' }}
run: ./gradlew publishPluginPublicationToHangar --parallel
env:
HANGAR_API_TOKEN: ${{ secrets.HANGAR_API_TOKEN }}

- name: Stage jar for Actions
if: ${{ github.event_name != 'release' }}
run: mkdir staging && cp build/libs/Movecraft-ShipRules.jar staging && mv staging/Movecraft-ShipRules.jar staging/Movecraft-ShipRules_$GITHUB_SHA.jar
- name: Upload jar to Actions
if: ${{ github.event_name != 'release' }}
uses: actions/upload-artifact@v4
with:
name: Movecraft-ShipRules_Dev-Build
path: staging/Movecraft-ShipRules_*.jar

- name: Stage jar for Release
if: ${{ github.event_name == 'release' }}
run: mkdir staging && cp build/libs/Movecraft-ShipRules.jar staging && mv staging/Movecraft-ShipRules.jar staging/Movecraft-ShipRules_${{ github.event.release.tag_name }}.jar
- name: Upload jar to Release
if: ${{ github.event_name == 'release' }}
uses: softprops/action-gh-release@v2
with:
files: staging/Movecraft-ShipRules_${{ github.event.release.tag_name }}.jar
40 changes: 0 additions & 40 deletions .github/workflows/maven.yml

This file was deleted.

Empty file modified gradlew
100644 → 100755
Empty file.

0 comments on commit 8b4d7ae

Please sign in to comment.