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

Commit a27cc35

Browse files
committed
Patchwork v0.9.1
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 some errors involving publishing artifacts.
1 parent f04a2d5 commit a27cc35

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
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: remapJar
23+
arguments: build
2424
dependencies-cache-enabled: true
2525
configuration-cache-enabled: false
2626
# Artifact publishing

.github/workflows/publish.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,10 @@ jobs:
1717
java-version: 8
1818
- uses: eskatos/gradle-command-action@v1
1919
with:
20-
arguments: remapJar
21-
- name: Delete -dev jar
22-
run: rm ./build/libs/patchwork-api-*-dev.jar
23-
- uses: ncipollo/[email protected]
20+
arguments: build
21+
- uses: ncipollo/release-action@v1
2422
with:
25-
artifacts: ./build/libs/patchwork-api-*.jar
23+
artifacts: ./build/libs/patchwork-api-?.?.?.jar
2624
token: ${{ secrets.GITHUB_TOKEN }}
2725
bintray:
2826
runs-on: ubuntu-latest

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212
def ENV = System.getenv()
1313

1414
class Globals {
15-
static def baseVersion = "0.9.0"
15+
static def baseVersion = "0.9.1"
1616
static def mcVersion = "1.14.4"
1717
static def yarnVersion = "+build.16"
1818
}
@@ -46,7 +46,7 @@ allprojects {
4646
apply plugin: 'maven-publish'
4747
apply plugin: 'fabric-loom'
4848
apply plugin: 'net.minecrell.licenser'
49-
49+
apply plugin: 'com.jfrog.bintray'
5050
sourceCompatibility = 1.8
5151
targetCompatibility = 1.8
5252

0 commit comments

Comments
 (0)