Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit 5ad67b2

Browse files
committed
Patchwork v0.9.2
This is a bugfix release, see https://github.com/PatchworkMC/patchwork-api/releases/tag/v0.9.0 for the changelog since the previous major release. This version fixes the (hopefully) last publishing error, and some other issues in the Github Actions workflows.
1 parent daef992 commit 5ad67b2

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: eskatos/gradle-command-action@v1
2121
with:
2222
gradle-version: wrapper
23-
arguments: build
23+
arguments: build -x check
2424
dependencies-cache-enabled: true
2525
configuration-cache-enabled: false
2626
# Artifact publishing

build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ class Globals {
1616
static def mcVersion = "1.14.4"
1717
static def yarnVersion = "+build.16"
1818
}
19+
version = Globals.baseVersion //+ "+" + (ENV.BUILD_NUMBER ? ("build." + ENV.BUILD_NUMBER) : "local") + "-" + getBranch()
20+
21+
logger.lifecycle("Building Patchwork: " + version)
1922

2023
def getSubprojectVersion(project, version) {
2124
if (grgit == null) {
@@ -296,8 +299,4 @@ loom {
296299
shareCaches = true
297300
}
298301

299-
version = Globals.baseVersion //+ "+" + (ENV.BUILD_NUMBER ? ("build." + ENV.BUILD_NUMBER) : "local") + "-" + getBranch()
300-
301-
logger.lifecycle("Building Patchwork: " + version)
302-
303302
apply from: 'https://github.com/FabricMC/fabric-docs/raw/master/gradle/ideconfig.gradle'

0 commit comments

Comments
 (0)