-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Combine publish into main CI * Add auto-publishing to PaperMC Hangar
- Loading branch information
1 parent
d0324bf
commit c0e6491
Showing
3 changed files
with
62 additions
and
59 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 |
---|---|---|
@@ -1,39 +1,53 @@ | ||
name: Java CI | ||
name: Gradle CI | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
pull_request: | ||
release: | ||
types: [created, prereleased] | ||
|
||
jobs: | ||
# Build Movecraft-CoreProtect | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
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: 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: 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 | ||
- name: Publish to GitHub Packages | ||
run: ./gradlew publish --parallel | ||
if: ${{ github.event_name == 'release' }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Publish to PaperMC Hangar | ||
run: ./gradlew publishPluginPublicationToHangar --parallel | ||
if: ${{ github.event_name == 'release' }} | ||
env: | ||
HANGAR_API_TOKEN: ${{ secrets.HANGAR_API_TOKEN }} | ||
|
||
- 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 |
This file was deleted.
Oops, something went wrong.
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