Skip to content

Commit

Permalink
publish change
Browse files Browse the repository at this point in the history
  • Loading branch information
TexBlock committed Jul 18, 2024
1 parent 4ccf0a4 commit dca528e
Show file tree
Hide file tree
Showing 11 changed files with 65 additions and 243 deletions.
81 changes: 27 additions & 54 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,59 +1,32 @@
name: Build
on:
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

on: [ push, pull_request, workflow_dispatch ]

jobs:
build:
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: Checkout Repository
uses: actions/checkout@v4

- name: Setup Java
run: echo "JAVA_HOME=$JAVA_HOME_17_X64" >> "$GITHUB_ENV"

- 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: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
gradle-home-cache-cleanup: true

- name: Validate Gradle Wrapper Integrity
uses: gradle/wrapper-validation-action@v2

- name: Build
run: ./gradlew buildOrPublish

- 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
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
- name: Cache
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
.gradle
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'build.gradle') }}
- name: Build with Gradle
run: |
chmod +x gradlew
./gradlew build
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: Artifacts
path: ${{ github.workspace }}/build/libs
21 changes: 0 additions & 21 deletions .github/workflows/close_issues.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/workflows/gametest.yml

This file was deleted.

14 changes: 0 additions & 14 deletions .github/workflows/label_issues.yml

This file was deleted.

48 changes: 0 additions & 48 deletions .github/workflows/localization.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Publish package to GitHub Packages
on:
workflow_dispatch:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'zulu'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3

- name: Publish package
run: ./gradlew publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ machete {

tasks.register("buildOrPublish") {
group = "build"
String mavenUser = System.getenv("MAVEN_USER")
String mavenUser = System.getenv("GITHUB_ACTOR")
if (mavenUser != null && !mavenUser.isEmpty()) {
dependsOn(tasks.named("publish"))
println("prepared for publish")
Expand Down Expand Up @@ -274,5 +274,6 @@ tasks.remapJar.configure {
}

// see gradle/publishing.gradle for publishing
apply from: "gradle/publishing/publishing.gradle"
//apply from: "gradle/publishing/publishing.gradle"
apply from: "gradle/publishing/maven.gradle"
apply from: "gradle/compat/compat.gradle"
23 changes: 0 additions & 23 deletions gradle/publishing/curseforge.gradle

This file was deleted.

11 changes: 11 additions & 0 deletions gradle/publishing/maven.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ publishing {
}

repositories {
/*
maven {
url = "https://mvn.devos.one/${System.getenv("PUBLISH_SUFFIX")}/"
credentials {
Expand All @@ -15,5 +16,15 @@ publishing {
}
authentication { basic(BasicAuthentication) }
}
*/

maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/dm-earth/CreateFabricYarned")
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")
password = project.findProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
}
}
}
}
14 changes: 0 additions & 14 deletions gradle/publishing/modrinth.gradle

This file was deleted.

44 changes: 0 additions & 44 deletions gradle/publishing/publishing.gradle

This file was deleted.

0 comments on commit dca528e

Please sign in to comment.