forked from Creators-of-Create/Create
-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
46 additions
and
42 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,52 +1,56 @@ | ||
name: build | ||
name: Build | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
publish: | ||
description: Publish to Modrinth and CurseForge | ||
required: true | ||
default: "false" | ||
patch: | ||
description: Patch number, 0 for first (ex. Create 1.19.2 v0.5.0.g Patch N) | ||
required: true | ||
pull_request: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
inputs: | ||
publish: | ||
description: Publish to Modrinth and CurseForge | ||
required: true | ||
default: "false" | ||
patch: | ||
description: Patch number, 0 for first (ex. Create 1.19.2 v0.5.0.g Patch N) | ||
required: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
env: | ||
PUBLISH_SUFFIX: snapshots | ||
MAVEN_USER: ${{ secrets.MAVEN_USER }} | ||
MAVEN_PASS: ${{ secrets.MAVEN_PASS }} | ||
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} | ||
CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }} | ||
PATCH_NUMBER: ${{ github.event.inputs.patch }} | ||
PUBLISHING: ${{ github.event.inputs.publish }} | ||
steps: | ||
build: | ||
runs-on: ubuntu-latest | ||
env: | ||
PUBLISH_SUFFIX: snapshots | ||
MAVEN_USER: ${{ secrets.MAVEN_USER }} | ||
MAVEN_PASS: ${{ secrets.MAVEN_PASS }} | ||
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} | ||
CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }} | ||
PATCH_NUMBER: ${{ github.event.inputs.patch }} | ||
PUBLISHING: ${{ github.event.inputs.publish }} | ||
steps: | ||
- name: Setup Java | ||
run: echo "JAVA_HOME=$JAVA_HOME_17_X64" >> "$GITHUB_ENV" | ||
|
||
- name: checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Loom Cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: "**/.gradle/loom-cache" | ||
key: "${{ runner.os }}-gradle-${{ hashFiles('**/libs.versions.*', '**/*.gradle*', '**/gradle-wrapper.properties') }}" | ||
restore-keys: "${{ runner.os }}-gradle-" | ||
|
||
- name: make gradle wrapper executable | ||
run: chmod +x ./gradlew | ||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@v3 | ||
with: | ||
gradle-home-cache-cleanup: true | ||
|
||
- name: setup Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: 17 | ||
cache: gradle | ||
- name: Validate Gradle Wrapper Integrity | ||
uses: gradle/wrapper-validation-action@v2 | ||
|
||
- name: build | ||
run: ./gradlew buildOrPublish | ||
- name: Build | ||
run: ./gradlew buildOrPublish | ||
|
||
- name: capture build artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Artifacts | ||
path: build/libs/ | ||
- name: Capture build artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Artifacts | ||
path: build/libs/ | ||
|
||
- name: publish to Modrinth and CurseForge | ||
if: ${{ github.event.inputs.publish }} | ||
run: ./gradlew publishMod | ||
- name: Publish to Modrinth and CurseForge | ||
if: ${{ github.event.inputs.publish }} | ||
run: ./gradlew publishMod |