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

Commit

Permalink
Patchwork v0.9.1
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
TheGlitch76 committed Aug 31, 2020
1 parent f04a2d5 commit a27cc35
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: eskatos/gradle-command-action@v1
with:
gradle-version: wrapper
arguments: remapJar
arguments: build
dependencies-cache-enabled: true
configuration-cache-enabled: false
# Artifact publishing
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@ jobs:
java-version: 8
- uses: eskatos/gradle-command-action@v1
with:
arguments: remapJar
- name: Delete -dev jar
run: rm ./build/libs/patchwork-api-*-dev.jar
- uses: ncipollo/release-action@v1.4.0
arguments: build
- uses: ncipollo/release-action@v1
with:
artifacts: ./build/libs/patchwork-api-*.jar
artifacts: ./build/libs/patchwork-api-?.?.?.jar
token: ${{ secrets.GITHUB_TOKEN }}
bintray:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
def ENV = System.getenv()

class Globals {
static def baseVersion = "0.9.0"
static def baseVersion = "0.9.1"
static def mcVersion = "1.14.4"
static def yarnVersion = "+build.16"
}
Expand Down Expand Up @@ -46,7 +46,7 @@ allprojects {
apply plugin: 'maven-publish'
apply plugin: 'fabric-loom'
apply plugin: 'net.minecrell.licenser'

apply plugin: 'com.jfrog.bintray'
sourceCompatibility = 1.8
targetCompatibility = 1.8

Expand Down

0 comments on commit a27cc35

Please sign in to comment.